Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ let package = Package(
// Windows does not use POSIX mutex
.when(platforms: [.linux, .macOS])),
.define("MDB_USE_ROBUST", to: "0"),
.unsafeFlags(["-Wno-shorten-64-to-32"])

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I understand the unsafeFlags(_:_:) documentation correctly, this change would prevent other packages from using the CLMDB library product:

As some build flags can be exploited for unsupported or malicious behavior, the use of unsafe flags makes the products containing this target ineligible for use by other packages.

]),
]
)