Skip to content

Commit

Permalink
don't set minimum, let cc do it
Browse files Browse the repository at this point in the history
  • Loading branch information
Be-ing committed Jan 30, 2024
1 parent 5f56f98 commit 41596b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/cxx-qt-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ impl CxxQtBuilder {
builder.flag_if_supported("/bigobj");
// GCC + Clang
builder.flag_if_supported("-std=c++17");
builder.flag_if_supported("-mmacosx-version-min=10.15");
// builder.flag_if_supported("-mmacosx-version-min=10.15");
// MinGW requires big-obj otherwise debug builds fail
builder.flag_if_supported("-Wa,-mbig-obj");
// Enable Qt Gui in C++ if the feature is enabled
Expand Down
2 changes: 1 addition & 1 deletion crates/cxx-qt-lib/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ fn main() {
builder.flag_if_supported("/bigobj");
// GCC + Clang
builder.flag_if_supported("-std=c++17");
builder.flag_if_supported("-mmacosx-version-min=10.15");
// builder.flag_if_supported("-mmacosx-version-min=10.15");
// MinGW requires big-obj otherwise debug builds fail
builder.flag_if_supported("-Wa,-mbig-obj");

Expand Down

0 comments on commit 41596b9

Please sign in to comment.