The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Helical, reference 0.4.1 (2e4ab8), with Swift 6.2 for macOS (SPM) on 9 Dec 2025 02:31:57 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

[183/234] Compiling ThreeMF Model.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[184/234] Compiling ThreeMF MetallicTextureDisplayProperties.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[185/234] Compiling ThreeMF Extensions.swift
[186/234] Compiling ThreeMF Build.swift
[187/234] Compiling ThreeMF Item.swift
[188/234] Compiling ThreeMF Materials.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[189/234] Compiling ThreeMF Production.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[190/234] Compiling ThreeMF TriangleSets.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[191/234] Emitting module Manifold3D
[192/234] Compiling Manifold3D Triangle.swift
[193/234] Compiling Manifold3D Vectors.swift
[193/234] Compiling CadovaCPP.cpp
[195/234] Emitting module ThreeMF
[196/238] Compiling ThreeMF Resource.swift
[197/238] Compiling ThreeMF Texture2D.swift
[198/238] Compiling ThreeMF Texture2DGroup.swift
[199/238] Compiling ThreeMF ThreeMF.swift
[200/238] Compiling ThreeMF Multiproperties.swift
[201/238] Compiling ThreeMF Alternatives.swift
[202/238] Compiling ThreeMF Component.swift
[203/238] Compiling ThreeMF Mesh.Triangle.swift
[223/238] Compiling ThreeMF Object.swift
[228/238] Compiling ThreeMF ModelLoader.swift
[229/238] Compiling ThreeMF PackageReader.swift
[230/238] Compiling ThreeMF PackageWriter.swift
[231/238] Compiling ThreeMF Relationship.swift
[232/238] Compiling ThreeMF Color.swift
[233/238] Compiling ThreeMF Matrix3D.swift
[234/238] Compiling ThreeMF Metadata.swift
[235/238] Compiling ThreeMF Unit.swift
[236/446] Compiling Cadova TwistRate.swift
[237/446] Compiling Cadova TwistSubdivisionThreshold.swift
[238/446] Compiling Cadova VisualizationOptions.swift
[239/446] Compiling Cadova ApplyMaterial.swift
[240/446] Compiling Cadova BuildResult.swift
[241/446] Compiling Cadova CachingGeometryTypes.swift
[242/446] Compiling Cadova GeometryBaseTypes.swift
[243/446] Compiling Cadova GeometryBuilder.swift
[244/446] Compiling Cadova PartAssignment.swift
[245/446] Compiling Cadova PartDetachment.swift
[246/446] Compiling Cadova PartModification.swift
[247/446] Compiling Cadova PartReader.swift
[248/446] Compiling Cadova PartSemantic.swift
[249/446] Compiling Cadova PartSubtraction.swift
[250/446] Compiling Cadova Geometry.swift
[251/446] Compiling Cadova Shape.swift
[252/446] Compiling Cadova Anchors+Public.swift
[253/446] Compiling Cadova Geometry+Anchors.swift
[254/446] Compiling Cadova ReferenceState.swift
[255/446] Compiling Cadova Tag.swift
[256/446] Compiling Cadova ResultElement.swift
[257/446] Compiling Cadova ResultModifier.swift
[258/446] Compiling Cadova ResultReader.swift
[259/469] Compiling Cadova Separate.swift
[260/469] Compiling Cadova Skew2D.swift
[261/469] Compiling Cadova Skew3D.swift
[262/469] Compiling Cadova Split.swift
[263/469] Compiling Cadova SplitInto.swift
[264/469] Compiling Cadova Stack.swift
[265/469] Compiling Cadova Geometry+Transformable.swift
[266/469] Compiling Cadova RotateAround.swift
[267/469] Compiling Cadova VariableScale.swift
[268/469] Compiling Cadova Twist.swift
[269/469] Compiling Cadova Warp.swift
[270/469] Compiling Cadova WhileMasked.swift
[271/469] Compiling Cadova WhileTransformed.swift
[272/469] Compiling Cadova Within.swift
[273/469] Compiling Cadova Wrap.swift
[274/469] Compiling Cadova Transformable+Rotation.swift
[275/469] Compiling Cadova Transformable+Scaling.swift
[276/469] Compiling Cadova Transformable+Shearing.swift
[277/469] Compiling Cadova Transformable+Translation.swift
[278/469] Compiling Cadova Transformable.swift
[279/469] Compiling Cadova AxesVisualization.swift
[280/469] Compiling Cadova BoundingBoxVisualization.swift
[281/469] Compiling Cadova CurveVisualization.swift
[282/491] Compiling Cadova Aligned.swift
[283/491] Compiling Cadova Attract.swift
[284/491] Compiling Cadova AttractionTarget.swift
[285/491] Compiling Cadova Pull.swift
[286/491] Compiling Cadova AddingExclusive.swift
[287/491] Compiling Cadova Difference.swift
[288/491] Compiling Cadova Intersection.swift
[289/491] Compiling Cadova MapBoolean.swift
[290/491] Compiling Cadova Union.swift
[291/491] Compiling Cadova Resize2D.swift
[292/491] Compiling Cadova Resize3D.swift
[293/491] Compiling Cadova DeformByPatch.swift
[294/491] Compiling Cadova DeformByPath.swift
[295/491] Compiling Cadova Clone.swift
[296/491] Compiling Cadova Distribute.swift
[297/491] Compiling Cadova RepeatAlong.swift
[298/491] Compiling Cadova RepeatAlongPath.swift
[299/491] Compiling Cadova RepeatAround.swift
[300/491] Compiling Cadova Symmetry.swift
[301/491] Compiling Cadova ApplyBoxEdgeProfile.swift
[302/491] Compiling Cadova ApplyEdgeProfileToCorners.swift
[303/491] Compiling Cadova ProfiledRectangleMask.swift
[304/491] Compiling Cadova RoundedBoxCornerMask.swift
[305/491] Compiling Cadova SDF.swift
[306/491] Compiling Cadova Sphere.swift
[307/491] Compiling Cadova Torus.swift
[308/491] Compiling Cadova Tube.swift
[309/491] Compiling Cadova Environment.swift
[310/491] Compiling Cadova EnvironmentModifier.swift
[311/491] Compiling Cadova EnvironmentValues.swift
[312/491] Compiling Cadova ReadEnvironment.swift
[313/491] Compiling Cadova CircularOverhangMethod.swift
[314/491] Compiling Cadova Environment+Anchors.swift
[315/491] Compiling Cadova Environment+CornerRoundingStyle.swift
[316/491] Compiling Cadova Environment+Material.swift
[317/491] Compiling Cadova Environment+ModelOptions.swift
[318/491] Compiling Cadova Environment+Segmentation.swift
[319/491] Compiling Cadova Environment+Text.swift
[320/491] Compiling Cadova Environment+Transform.swift
[321/491] Compiling Cadova FillRule.swift
[322/491] Compiling Cadova MiterLimit.swift
[323/491] Compiling Cadova NaturalUpDirection.swift
[324/491] Compiling Cadova Operation.swift
[325/491] Compiling Cadova Overhang.swift
[326/491] Compiling Cadova SimplificationThreshold.swift
[327/491] Compiling Cadova Tolerance.swift
[328/491] Emitting module Cadova
[329/491] Compiling Cadova RoundingBoxCorners.swift
[330/491] Compiling Cadova EnclosePatch.swift
[331/491] Compiling Cadova ExtrudeAlongTransforms.swift
[332/491] Compiling Cadova ExtrudeWithEdgeProfiles.swift
[333/491] Compiling Cadova Extrusion.swift
[334/491] Compiling Cadova HelixSweep.swift
[335/491] Compiling Cadova Sweep.swift
[336/491] Compiling Cadova ConvexHull.swift
[337/491] Compiling Cadova Fill.swift
[338/491] Compiling Cadova Follow2D.swift
[339/491] Compiling Cadova Follow3D.swift
[340/491] Compiling Cadova Loft+Build.swift
[341/491] Compiling Cadova Loft+Resampling.swift
[342/491] Compiling Cadova Loft.swift
[343/491] Compiling Cadova Measure.swift
[344/491] Compiling Cadova Offset.swift
[345/491] Compiling Cadova Rounding.swift
[346/491] Compiling Cadova OverhangSafe.swift
[347/491] Compiling Cadova Projection.swift
[348/491] Compiling Cadova ReadConcrete.swift
[349/491] Compiling Cadova ReadOutlines.swift
[350/491] Compiling Cadova Replace.swift
[351/491] Compiling Cadova Resolution.swift
[352/491] Compiling Cadova Arc.swift
[353/491] Compiling Cadova Circle+Metrics.swift
[354/491] Compiling Cadova Circle.swift
[355/491] Compiling Cadova Ring.swift
[356/491] Compiling Cadova Metrics2D.swift
[357/491] Compiling Cadova CylinderBridge.swift
[358/491] Compiling Cadova OverhangCircle.swift
[359/491] Compiling Cadova Polygon.Metrics.swift
[360/491] Compiling Cadova Polygon.swift
[361/491] Compiling Cadova PolygonPoints.swift
[362/491] Compiling Cadova Rectangle.swift
[363/491] Compiling Cadova RegularPolygon.swift
[364/491] Compiling Cadova Stadium.swift
[365/491] Compiling Cadova GlyphRenderer.swift
[366/491] Compiling Cadova Text.swift
[367/491] Compiling Cadova TextAttributes.swift
[368/491] Compiling Cadova TextRendering.swift
[369/491] Compiling Cadova Box.swift
[370/491] Compiling Cadova Cylinder+Angles.swift
[371/491] Compiling Cadova Cylinder.swift
[372/491] Compiling Cadova Import.swift
[373/491] Compiling Cadova Mesh+Debug.swift
[374/491] Compiling Cadova Mesh.swift
[375/491] Compiling Cadova DirectionVisualization.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[376/491] Compiling Cadova MeshVisualization.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[377/491] Compiling Cadova PlaneVisualization.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[378/491] Compiling Cadova ArrayBuilder.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[379/491] Compiling Cadova Compatibility.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[380/491] Compiling Cadova BuildDirective.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[381/491] Compiling Cadova Model.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[382/491] Compiling Cadova ModelContentBuilder.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[383/491] Compiling Cadova ModelContext.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[384/491] Compiling Cadova Compression.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[385/491] Compiling Cadova FileFormats.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[386/491] Compiling Cadova IncludedPartSemantics.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[387/491] Compiling Cadova Metadata.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[388/491] Compiling Cadova ModelOptions.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[389/491] Compiling Cadova Project.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[390/491] Compiling Cadova ProjectContentBuilder.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[391/491] Compiling Cadova ConcreteGeometry.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[392/491] Compiling Cadova BinarySTLDataProvider.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[393/491] Compiling Cadova OutputDataProvider.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[394/491] Compiling Cadova SVGDataProvider.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[395/491] Compiling Cadova ThreeMFDataProvider.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[396/491] Compiling Cadova PartIdentifier.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[397/491] Compiling Cadova PolygonTree.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 |   mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 |   CsgLeafNode& GetCsgLeafNode() const;
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   |- note: return type unavailable (cannot import)
    |   |- note: function 'GetCsgLeafNode' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:73:3: note: function 'exception_ptr' unavailable (cannot import)
 71 |
 72 |   _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
 73 |   _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
    |   |                                   `- note: parameter '' unavailable (cannot import)
    |   `- note: function 'exception_ptr' unavailable (cannot import)
 74 |
 75 |   exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
 47 |   _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
 48 |
 49 |   _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
    |   |                                           `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_code' unavailable (cannot import)
 50 |
 51 |   template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
    :
 55 |   }
 56 |
 57 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 58 |     __val_ = __val;
 59 |     __cat_ = &__cat;
    :
 74 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 75 |
 76 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 77 |
 78 |   _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
 54 |   _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
 55 |
 56 |   _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
    |   |                                                `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'error_condition' unavailable (cannot import)
 57 |       : __val_(__val),
 58 |         __cat_(&__cat) {}
    :
 64 |   }
 65 |
 66 |   _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
    |   |                                            `- note: parameter '__cat' unavailable (cannot import)
    |   `- note: function 'assign' unavailable (cannot import)
 67 |     __val_ = __val;
 68 |     __cat_ = &__cat;
    :
 83 |   _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
 84 |
 85 |   _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
    |   |- note: function 'category' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 86 |   string message() const;
 87 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
 110 |   void __install_ctor(const locale&, facet*, long);
 111 |   static locale& __global();
 112 |   bool has_facet(id&) const;
     |   |              `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'has_facet' unavailable (cannot import)
 113 |   const facet* use_facet(id&) const;
     |   |                      `- note: parameter '' unavailable (cannot import)
     |   `- note: function 'use_facet' unavailable (cannot import)
 114 |
 115 |   template <class _Facet>
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
 67 |
 68 | public:
 69 |   _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
    |   |                                `- note: parameter '__y' unavailable (cannot import)
    |   `- note: function 'type_index' unavailable (cannot import)
 70 |
 71 |   _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
 84 |   _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
 85 |
 86 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 87 |     __dir_element_proxy __p(**this);
 88 |     __increment();
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
 80 |   _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
 81 |
 82 |   _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
    |   |- note: function 'operator++' unavailable (cannot import)
    |   `- note: return type unavailable (cannot import)
 83 |     __dir_element_proxy __p(**this);
 84 |     __increment();
[398/491] Compiling Cadova Dimensionality.swift
[399/491] Compiling Cadova Extensions.swift
[400/491] Compiling Cadova Logging.swift
[401/491] Compiling Cadova EvaluationContext.swift
[402/491] Compiling Cadova GeometryCache.swift
[403/491] Compiling Cadova EvaluationResult.swift
[404/491] Compiling Cadova GeometryNode+Codable.swift
[405/491] Compiling Cadova GeometryNode+Creation.swift
[406/491] Compiling Cadova GeometryNode+Debug.swift
[407/491] Compiling Cadova GeometryNode+Hashable.swift
[408/491] Compiling Cadova GeometryNode+Shapes.swift
[409/491] Compiling Cadova GeometryNode.swift
[410/491] Compiling Cadova Operators.swift
[411/491] Compiling Cadova Platform.swift
[412/491] Compiling Cadova AxisAlignment.swift
[413/491] Compiling Cadova GeometryAlignment+Presets.swift
[414/491] Compiling Cadova GeometryAlignment.swift
[415/491] Compiling Cadova Angle+Operators.swift
[416/491] Compiling Cadova Angle+Trigonometry.swift
[417/491] Compiling Cadova Angle.swift
[418/491] Compiling Cadova Axes.swift
[419/491] Compiling Cadova Axis.swift
[420/491] Compiling Cadova BoundingBox.swift
[421/491] Compiling Cadova CacheKey.swift
[422/491] Compiling Cadova Color+Constants.swift
[423/491] Compiling Cadova Color+HSB.swift
[424/491] Compiling Cadova Color.swift
[425/491] Compiling Cadova Box.Corner.swift
[426/491] Compiling Cadova Box.Edge.swift
[427/491] Compiling Cadova CornerRoundingStyle.swift
[428/491] Compiling Cadova DirectionalAxis.swift
[429/491] Compiling Cadova OrthogonalCorner.swift
[430/491] Compiling Cadova Rectangle.Corner.swift
[431/491] Compiling Cadova AnyParametricCurve.swift
[432/491] Compiling Cadova BezierCurve.swift
[433/491] Compiling Cadova BezierPatch.swift
[434/491] Compiling Cadova BezierPath+Adding.swift
[435/491] Compiling Cadova BezierPath+Internal.swift
[436/491] Compiling Cadova BezierPath+Operations.swift
[437/491] Compiling Cadova BezierPath.swift
[438/491] Compiling Cadova BezierPath.Builder.swift
[439/491] Compiling Cadova ComponentFunctions.swift
[440/491] Compiling Cadova PathBuilderValue.swift
[441/491] Compiling Cadova PathBuilderVector.swift
[442/491] Compiling Cadova CurveSample.swift
[443/491] Compiling Cadova InterpolatingCurve.swift
[444/491] Compiling Cadova Line.swift
[445/491] Compiling Cadova LinearDirection.swift
[446/491] Compiling Cadova Plane+Transformation.swift
[447/491] Compiling Cadova Plane.swift
[448/491] Compiling Cadova BasicMatrix3x3.swift
[449/491] Compiling Cadova Transform2D+Creation.swift
[450/491] Compiling Cadova Transform2D.swift
[451/491] Compiling Cadova BasicMatrix4x4.swift
[452/491] Compiling Cadova Transform3D+Creation.swift
[453/491] Compiling Cadova Transform3D.swift
[454/491] Compiling Cadova Matrix.swift
[455/491] Compiling Cadova Transform.swift
[456/491] Compiling Cadova Triangle+Internal.swift
[457/491] Compiling Cadova Triangle+Protocols.swift
[458/491] Compiling Cadova Triangle+Right.swift
[459/491] Compiling Cadova Triangle.swift
[460/491] Compiling Cadova DimensionalValues.swift
[461/491] Compiling Cadova Vector.swift
[462/491] Compiling Cadova Vector2D+Operators.swift
[463/491] Compiling Cadova Vector2D.swift
[464/491] Compiling Cadova Vector3D+Operators.swift
[465/491] Compiling Cadova Vector3D.swift
[466/491] Compiling Cadova ParametricCurve+DefaultImplementations.swift
[467/491] Compiling Cadova ParametricCurve+Operations.swift
[468/491] Compiling Cadova ParametricCurve.swift
[469/491] Compiling Cadova ParametricCurveFrame.swift
[470/491] Compiling Cadova SplineCurve+Creation.swift
[471/491] Compiling Cadova SplineCurve.swift
[472/491] Compiling Cadova Subcurve.swift
[473/491] Compiling Cadova EdgeProfile+Cutting.swift
[474/491] Compiling Cadova EdgeProfile+Forming.swift
[475/491] Compiling Cadova EdgeProfile+Presets.swift
[476/491] Compiling Cadova EdgeProfile.swift
[477/491] Compiling Cadova LinearInterpolation.swift
[478/491] Compiling Cadova Material+Presets.swift
[479/491] Compiling Cadova Material.swift
[480/491] Compiling Cadova Measurements.swift
[481/491] Compiling Cadova MeshData.swift
[482/491] Compiling Cadova OpaqueKey.swift
[483/491] Compiling Cadova Segmentation.swift
[484/491] Compiling Cadova ShapingFunction+Internal.swift
[485/491] Compiling Cadova ShapingFunction.swift
[486/491] Compiling Cadova SimplePolygon.swift
[487/491] Compiling Cadova SimplePolygonList.swift
[488/491] Compiling Cadova Direction.swift
[489/531] Emitting module Helical
[490/531] Compiling Helical Screw.swift
[491/531] Compiling Helical ScrewThread+ISOMetric.swift
[492/531] Compiling Helical ScrewThread+Standard.swift
[493/531] Compiling Helical ScrewThread.swift
[494/535] Compiling Helical PhillipsBoltHeadSocket.swift
[495/535] Compiling Helical PolygonalBoltHeadSocket.swift
[496/535] Compiling Helical SlottedBoltHeadSocket.swift
[497/535] Compiling Helical Torx.swift
[498/535] Compiling Helical TorxHeadSocket.swift
[499/535] Compiling Helical FlangedNutBody.swift
[500/535] Compiling Helical PolygonalNutBody.swift
[501/535] Compiling Helical TSlotNutBody.swift
[502/535] Compiling Helical Nut.swift
[503/535] Compiling Helical Nut+Hex.swift
[504/535] Compiling Helical Nut+Square.swift
[505/535] Compiling Helical Nut+TSlot.swift
[506/535] Compiling Helical Environment+Thread.swift
[507/535] Compiling Helical Bolt+HexHead.swift
[508/535] Compiling Helical Bolt+HexSocketCountersunk.swift
[509/535] Compiling Helical Bolt+HexSocketHeadCap.swift
[510/535] Compiling Helical Bolt+PhillipsCheeseHead.swift
[511/535] Compiling Helical Bolt.swift
[512/535] Compiling Helical BoltHeadShape.swift
[513/535] Compiling Helical CountersunkBoltHeadShape.swift
[514/535] Compiling Helical CylindricalBoltHeadShape.swift
[515/535] Compiling Helical PolygonalBoltHeadShape.swift
[516/535] Compiling Helical BoltHeadRecess.swift
[517/535] Compiling Helical BoltHeadRecessShapes.swift
[518/535] Compiling Helical ClearanceHole.swift
[519/535] Compiling Helical ThreadedHole.swift
[520/535] Compiling Helical Bolt+PhillipsCountersunk.swift
[521/535] Compiling Helical Bolt+SetScrew.swift
[522/535] Compiling Helical Bolt+SlottedCountersunk.swift
[523/535] Compiling Helical Bolt+TorxCountersunk.swift
[524/535] Compiling Helical ProfiledBoltHeadShape.swift
[525/535] Compiling Helical BoltPoint.swift
[526/535] Compiling Helical ProfiledBoltPoint.swift
[527/535] Compiling Helical BoltHeadSocket.swift
[528/535] Compiling Helical Phillips.swift
[529/535] Compiling Helical SolidThreadform.swift
[530/535] Compiling Helical TrapezoidalThreadForm.swift
[531/535] Compiling Helical Washer+Standard.swift
[532/535] Compiling Helical Washer.swift
[533/537] Compiling Demo main.swift
[534/537] Emitting module Demo
[534/537] Write Objects.LinkFileList
[535/537] Linking Helical-Demo
[536/537] Applying Helical-Demo
Build complete! (52.41s)
warning: 'spi-builder-workspace': found 2 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/Demo/bolts.stl
    /Users/admin/builder/spi-builder-workspace/Sources/Demo/nutsAndWashers.stl
Build complete.
{
  "dependencies" : [
    {
      "identity" : "cadova",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.0",
            "upper_bound" : "0.4.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tomasf/Cadova.git"
    }
  ],
  "manifest_display_name" : "Helical",
  "name" : "Helical",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Helical",
      "targets" : [
        "Helical"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Helical-Demo",
      "targets" : [
        "Demo"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Helical",
      "module_type" : "SwiftTarget",
      "name" : "Helical",
      "path" : "Sources/Helical",
      "product_dependencies" : [
        "Cadova"
      ],
      "product_memberships" : [
        "Helical",
        "Helical-Demo"
      ],
      "sources" : [
        "Bolt/Bolt.swift",
        "Bolt/Parts/Heads/BoltHeadShape.swift",
        "Bolt/Parts/Heads/CountersunkBoltHeadShape.swift",
        "Bolt/Parts/Heads/CylindricalBoltHeadShape.swift",
        "Bolt/Parts/Heads/PolygonalBoltHeadShape.swift",
        "Bolt/Parts/Heads/ProfiledBoltHeadShape.swift",
        "Bolt/Parts/Points/BoltPoint.swift",
        "Bolt/Parts/Points/ProfiledBoltPoint.swift",
        "Bolt/Parts/Sockets/BoltHeadSocket.swift",
        "Bolt/Parts/Sockets/Phillips.swift",
        "Bolt/Parts/Sockets/PhillipsBoltHeadSocket.swift",
        "Bolt/Parts/Sockets/PolygonalBoltHeadSocket.swift",
        "Bolt/Parts/Sockets/SlottedBoltHeadSocket.swift",
        "Bolt/Parts/Sockets/Torx.swift",
        "Bolt/Parts/Sockets/TorxHeadSocket.swift",
        "Bolt/Standards/Bolt+HexHead.swift",
        "Bolt/Standards/Bolt+HexSocketCountersunk.swift",
        "Bolt/Standards/Bolt+HexSocketHeadCap.swift",
        "Bolt/Standards/Bolt+PhillipsCheeseHead.swift",
        "Bolt/Standards/Bolt+PhillipsCountersunk.swift",
        "Bolt/Standards/Bolt+SetScrew.swift",
        "Bolt/Standards/Bolt+SlottedCountersunk.swift",
        "Bolt/Standards/Bolt+TorxCountersunk.swift",
        "Holes/BoltHeadRecess.swift",
        "Holes/BoltHeadRecessShapes.swift",
        "Holes/ClearanceHole.swift",
        "Holes/ThreadedHole.swift",
        "Nut/Bodies/FlangedNutBody.swift",
        "Nut/Bodies/PolygonalNutBody.swift",
        "Nut/Bodies/TSlotNutBody.swift",
        "Nut/Nut.swift",
        "Nut/Standards/Nut+Hex.swift",
        "Nut/Standards/Nut+Square.swift",
        "Nut/Standards/Nut+TSlot.swift",
        "Thread/Environment+Thread.swift",
        "Thread/Screw.swift",
        "Thread/ScrewThread+ISOMetric.swift",
        "Thread/ScrewThread+Standard.swift",
        "Thread/ScrewThread.swift",
        "Thread/SolidThreadform.swift",
        "Thread/TrapezoidalThreadForm.swift",
        "Washers/Washer+Standard.swift",
        "Washers/Washer.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Demo",
      "module_type" : "SwiftTarget",
      "name" : "Demo",
      "path" : "Sources/Demo",
      "product_dependencies" : [
        "Cadova"
      ],
      "product_memberships" : [
        "Helical-Demo"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Helical"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "6.0"
}
Done.