Skip to content

Commit 5019f79

Browse files
WebKit ARM64 Builderclaude
andcommitted
Fix CMAKE_SYSTEM_PROCESSOR always hardcoded to ARM64
The script defined $CmakeArch correctly but never used it. CMAKE_SYSTEM_PROCESSOR was always ARM64 even on x64 builds. This was breaking x64 builds completely. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent cdb0715 commit 5019f79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windows-release.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ if ($CcachePath) {
269269

270270
cmake -S . -B $WebKitBuild `
271271
-DPORT="JSCOnly" `
272-
-DCMAKE_SYSTEM_PROCESSOR=ARM64 `
272+
"-DCMAKE_SYSTEM_PROCESSOR=${CmakeArch}" `
273273
@CcacheLauncher `
274274
-DENABLE_STATIC_JSC=ON `
275275
-DALLOW_LINE_AND_COLUMN_NUMBER_IN_BUILTINS=ON `

0 commit comments

Comments
 (0)