tools: Fix target-pointer-width type in x86 target configs

Remove quotes around target-pointer-width values in i486 and x86_64
target configuration files to change from string to numeric type.
This change is required due to recent rustc JSON format modifications
that expect numeric values instead of strings for target-pointer-width.

Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
This commit is contained in:
Huang Qi 2026-03-13 14:29:37 +08:00 committed by simbit18
parent f90e1e184f
commit ea22a66dcf
2 changed files with 2 additions and 2 deletions

View file

@ -29,5 +29,5 @@
"unix"
],
"target-mcount": "__mcount",
"target-pointer-width": "32"
"target-pointer-width": 32
}

View file

@ -32,5 +32,5 @@
"target-family": [
"unix"
],
"target-pointer-width": "64"
"target-pointer-width": 64
}