We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e0dc7 commit 9e0d1c1Copy full SHA for 9e0d1c1
3 files changed
build.ps1
@@ -98,6 +98,13 @@ try {
98
$extSourcePath
99
)
100
101
+ # Link the object files produced when building the main interpreter
102
+ # so extensions can resolve internal runtime symbols (value_* helpers).
103
+ $objFiles = Get-ChildItem -Path $buildDir -Filter *.obj -File -Recurse | ForEach-Object { $_.FullName }
104
+ if ($objFiles.Count -gt 0) {
105
+ $extArgs += $objFiles
106
+ }
107
+
108
Write-Host "Invoking: cl.exe $($extArgs -join ' ')"
109
& cl.exe @extArgs
110
if ($LASTEXITCODE -ne 0) {
0 commit comments