mirror of
https://github.com/apache/nuttx.git
synced 2025-01-12 20:58:44 +08:00
armv7-a.cmake: Improve FPU options table formatting and readability
Reformatted the FPU options table to use a clearer markdown-style table format with proper alignment and column headers. Added visual separators (~~~) to make the table stand out from surrounding code. Improved consistency in column widths and fixed line wrapping for better readability. Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
This commit is contained in:
parent
9783c88425
commit
f2934935d0
1 changed files with 9 additions and 6 deletions
|
@ -36,12 +36,15 @@ if(NOT CONFIG_ARM_DPFPU32)
|
|||
set(ARCHFPUD16 -d16)
|
||||
endif()
|
||||
|
||||
# Cortex-A5 | -mfpu=vfpv4-fp16 | -mfpu=vfpv4-d16-fp16 | -mfpu=neon-fp16
|
||||
# Cortex-A7 | -mfpu=vfpv4 | -mfpu=vfpv4-d16 | -mfpu=neon-vfpv4
|
||||
# Cortex-A8 | -mfpu=vfpv3 | | -mfpu=neon (alias for
|
||||
# neon-vfpv3) Cortex-A9 | -mfpu=vfpv3-fp16 | -mfpu=vfpv3-d16-fp16 |
|
||||
# -mfpu=neon-fp16 Cortex-A15 | -mfpu=vfpv4 | |
|
||||
# -mfpu=neon-vfpv4
|
||||
# ~~~
|
||||
# | Cortex | FPU Option 1 | FPU Option 2 | FPU Option 3 |
|
||||
# |--------|--------------------|------------------------|-----------------------|
|
||||
# | A5 | -mfpu=vfpv4-fp16 | -mfpu=vfpv4-d16-fp16 | -mfpu=neon-fp16 |
|
||||
# | A7 | -mfpu=vfpv4 | -mfpu=vfpv4-d16 | -mfpu=neon-vfpv4 |
|
||||
# | A8 | -mfpu=vfpv3 | | -mfpu=neon (alias for neon-vfpv3) |
|
||||
# | A9 | -mfpu=vfpv3-fp16 | -mfpu=vfpv3-d16-fp16 | -mfpu=neon-fp16 |
|
||||
# | A15 | -mfpu=vfpv4 | | -mfpu=neon-vfpv4 |
|
||||
# ~~~
|
||||
|
||||
if(CONFIG_ARCH_FPU)
|
||||
if(CONFIG_ARM_FPU_ABI_SOFT)
|
||||
|
|
Loading…
Reference in a new issue