We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f44d4ea commit 2e105ccCopy full SHA for 2e105cc
.pipelines/DSC-Official.yml
@@ -125,6 +125,11 @@ extends:
125
- pwsh: |
126
Set-Location "$(Build.SourcesDirectory)/DSC"
127
write-verbose -verbose (dir "$($env:PROGRAMFILES)\Microsoft Visual Studio\2022\Enterprise" -r clang.exe | out-string)
128
+ $VSINSTALLDIR = $(vswhere.exe -latest -requires Microsoft.VisualStudio.Component.VC.Llvm.Clang -property installationPath)
129
+ $VCINSTALLDIR = Join-Path $VSINSTALLDIR "VC"
130
+ $LLVM_ROOT = Join-Path $VCINSTALLDIR "Tools\Llvm\x64"
131
+ $Env:PATH += ";$LLVM_ROOT\bin"
132
+ write-verbose -verbose (gcm clang.exe | out-string)
133
./build.ps1 -Release -Architecture $(buildName) -SkipLinkCheck
134
displayName: 'Build $(buildName)'
135
env:
0 commit comments