Skip to content

Commit d98a78a

Browse files
committed
disable compiling with -g flag withou ndebug
1 parent 5780703 commit d98a78a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,6 @@ void compileToBinary(const std::string& command, std::string_view sourceFilename
174174

175175
argv.push_back(command);
176176

177-
#ifndef NDEBUG
178-
// compile with debug
179-
argv.push_back("-g");
180-
#endif
181-
182177
if (Global::config().has("swig")) {
183178
argv.push_back("-s");
184179
argv.push_back(Global::config().get("swig"));

0 commit comments

Comments
 (0)