1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[gn build] Use forward slashes for goma directory

gn generates improper compile_commands.json files by not escaping
backslashes.
This commit is contained in:
Arthur Eubanks 2020-11-17 17:09:45 -08:00
parent 38217e55e7
commit 872429df99

View File

@ -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"
}