Skip to content

Commit

Permalink
dmake: suppress -Wmultichar in release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Sep 29, 2023
1 parent 315fe40 commit dc07c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dmake.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ int main(int argc, char **argv)

// Makefile settings..
if (release) {
makeConditionalVariable(fout, "CXXFLAGS", "-std=c++0x -O2 -DNDEBUG -Wall -Wno-sign-compare");
makeConditionalVariable(fout, "CXXFLAGS", "-std=c++0x -O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-multichar");
} else {
// TODO: add more compiler warnings.
// -Wlogical-op : doesn't work on older GCC
Expand Down

0 comments on commit dc07c90

Please sign in to comment.