Skip to content

Commit

Permalink
Add TODO comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Dec 16, 2023
1 parent e5ec9c5 commit f4398d1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/BuildConfig.cc
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,10 @@ String emitMakefile(const Vec<String>& args) {
// Compiler settings
config.defineVariable("CC", "clang++");
const String baseCflags =
"-Wall -Wextra -fdiagnostics-color -pedantic-errors -std=c++20 ";
"-Wall -Wextra -fdiagnostics-color -pedantic-errors -std=c++20 "; // TODO:
// Get
// from
// poac.toml
if (debug) {
config.defineVariable("CFLAGS", baseCflags + "-g -O0 -DDEBUG");
} else {
Expand Down

0 comments on commit f4398d1

Please sign in to comment.