You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UUID in Utilities.swift has been deprecated, but it's still impossible to build on a system that doesn't have uuid-dev installed.
The recommended solution of installing it with apt-get isn't always possible. For example, Netlify Docker images run unprivileged as a security policy and do not have it installed.
Perhaps gating it with #if swift(<5.0) and using __has_include in the C headers would work?
The text was updated successfully, but these errors were encountered:
UUID
inUtilities.swift
has been deprecated, but it's still impossible to build on a system that doesn't haveuuid-dev
installed.The recommended solution of installing it with
apt-get
isn't always possible. For example, Netlify Docker images run unprivileged as a security policy and do not have it installed.Perhaps gating it with
#if swift(<5.0)
and using__has_include
in the C headers would work?The text was updated successfully, but these errors were encountered: