diff options
Diffstat (limited to 'core/libdeno')
-rw-r--r-- | core/libdeno/BUILD.gn | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/libdeno/BUILD.gn b/core/libdeno/BUILD.gn index 6bbda98c5..2eb0b7128 100644 --- a/core/libdeno/BUILD.gn +++ b/core/libdeno/BUILD.gn @@ -24,9 +24,10 @@ config("deno_config") { "-fcolor-diagnostics", "-fansi-escape-codes", ] - if (is_debug) { - cflags += [ "-glldb" ] - } + } + + if (is_debug && is_clang && !is_win) { + cflags += [ "-glldb" ] } if (is_win) { |