mirror of https://github.com/aminya/setup-cpp
fix: quote CPPFLAGS and LDFLAGS instead of escaping
This commit is contained in:
parent
3eb3fc16a7
commit
1476cdd202
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -317,8 +317,8 @@ export async function activateLLVM(directory: string, versionGiven: string) {
|
|||
}
|
||||
}
|
||||
|
||||
addEnv("LDFLAGS", `-L${directory}/lib`, true)
|
||||
addEnv("CPPFLAGS", `-I${directory}/include`, true)
|
||||
addEnv("LDFLAGS", `-L"${directory}/lib"`)
|
||||
addEnv("CPPFLAGS", `-I"${directory}/include"`)
|
||||
|
||||
addEnv("CC", `${directory}/bin/clang`)
|
||||
addEnv("CXX", `${directory}/bin/clang++`)
|
||||
|
|
Loading…
Reference in New Issue