mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
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:
parent
f90e1e184f
commit
ea22a66dcf
2 changed files with 2 additions and 2 deletions
|
|
@ -29,5 +29,5 @@
|
|||
"unix"
|
||||
],
|
||||
"target-mcount": "__mcount",
|
||||
"target-pointer-width": "32"
|
||||
"target-pointer-width": 32
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,5 +32,5 @@
|
|||
"target-family": [
|
||||
"unix"
|
||||
],
|
||||
"target-pointer-width": "64"
|
||||
"target-pointer-width": 64
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue