forked from OSchip/llvm-project
[gn build] Use forward slashes for goma directory
gn generates improper compile_commands.json files by not escaping backslashes.
This commit is contained in:
parent
b13415b59b
commit
67e0f791c9
|
@ -3,7 +3,7 @@ import("//llvm/utils/gn/build/toolchain/compiler.gni")
|
|||
declare_args() {
|
||||
# If is_goma is true, the location of the goma client install.
|
||||
if (host_os == "win") {
|
||||
goma_dir = "c:\src\goma\goma-win64"
|
||||
goma_dir = "C:/src/goma/goma-win64"
|
||||
} else {
|
||||
goma_dir = getenv("HOME") + "/goma"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue