Skip to content

Commit

Permalink
gcc stop being annoying
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarreiro committed Dec 9, 2024
1 parent a0db609 commit 75b7025
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions barretenberg/cpp/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@
"binaryDir": "build-gcc",
"environment": {
"CC": "gcc",
"CXX": "g++"
"CXX": "g++",
"CXXFLAGS": "-Wno-missing-field-initializers"
}
},
{
Expand All @@ -233,7 +234,8 @@
"inherits": "default",
"environment": {
"CC": "gcc-10",
"CXX": "g++-10"
"CXX": "g++-10",
"CXXFLAGS": "-Wno-missing-field-initializers"
}
},
{
Expand All @@ -243,7 +245,8 @@
"inherits": "default",
"environment": {
"CC": "gcc-13",
"CXX": "g++-13"
"CXX": "g++-13",
"CXXFLAGS": "-Wno-missing-field-initializers"
}
},
{
Expand Down

0 comments on commit 75b7025

Please sign in to comment.