Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/maker/buildcontent.go
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ func (c *Cbuild) ProcessorOptions() string {
}

var MveMap = map[string]string{
"fp": "FP_FVE",
"fp": "FP_MVE",
"int": "MVE",
"off": "NO_MVE",
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set(LD_SCRIPT_PP ${LD_SCRIPT})
set(CPU Cortex-M55)
set(FPU DP_FPU)
set(DSP DSP)
set(MVE FP_FVE)
set(MVE FP_MVE)

# Toolchain config map
set(COMPILER AC6)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set(LD_SCRIPT_PP "${CMAKE_CURRENT_BINARY_DIR}/clang_linker_script.ld")
set(CPU Cortex-M55)
set(FPU DP_FPU)
set(DSP DSP)
set(MVE FP_FVE)
set(MVE FP_MVE)

# Toolchain config map
set(COMPILER CLANG)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set(LD_SCRIPT_PP ${LD_SCRIPT})
set(CPU Cortex-M55)
set(FPU DP_FPU)
set(DSP DSP)
set(MVE FP_FVE)
set(MVE FP_MVE)

# Toolchain config map
set(COMPILER GCC)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set(LD_SCRIPT_PP "${CMAKE_CURRENT_BINARY_DIR}/iar_linker_script.icf")
set(CPU Cortex-M55)
set(FPU DP_FPU)
set(DSP DSP)
set(MVE FP_FVE)
set(MVE FP_MVE)

# Toolchain config map
set(COMPILER IAR)
Expand Down
Loading