1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 00:21:05 -05:00

build: on windows, don't pass -glldb to clang (#2874)

This commit is contained in:
Bert Belder 2019-09-06 18:43:48 -07:00 committed by GitHub
parent acaff6d056
commit 699d2ae4bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {