mirror of
https://github.com/apple/container.git
synced 2026-09-12 18:55:43 +00:00
The mount flags are defined as `Int`s for musl but as `Int32`s for glibc, despite the mount methods expecting `Int32` for both. This was leading to build errors when building with glibc like: ``` | "async": .init(true, MS_SYNCHRONOUS), | `- error: cannot convert value of type 'Int' to expected type 'Int32' ``` This PR allows for different Int sizes based on if we're building for glibc or not to avoid this build error. Signed-off-by: Kathryn Baldauf <k_baldauf@apple.com>
OS
This target contains general useful OS related definitions or wrappers.