1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

Add -glldb to clang flags for libdeno (#1446)

This commit is contained in:
Kevin (Kun) "Kassimo" Qian 2019-01-02 21:05:47 -05:00 committed by Ryan Dahl
parent 0834478154
commit 76de81358e

View file

@ -16,6 +16,9 @@ config("deno_config") {
"-fcolor-diagnostics",
"-fansi-escape-codes",
]
if (is_debug) {
cflags += [ "-glldb" ]
}
}
if (is_win) {