Filter löschen
Filter löschen

"Error Limitation : fixed point type is not supported" in POLYSPACE R2021a

2 Ansichten (letzte 30 Tage)
Hii there, I am currently working on generating a static analysis report based on MISRA 2012 using Polyspace R2021a. However, I've encountered a challenge during the compilation process. Specifically, I am facing an error that states "Limitation: fixed-point type is not supported" in <tricore.h> file.
If there are specific resources or steps you recommend, please let me know. Your support in this matter is highly valued.

Antworten (1)

atharva
atharva am 7 Dez. 2023
Hey Shreyas,
I understand that you are facing the error "Limitation: fixed-point type is not supported" in <tricore.h> file.
You can work around this problem by substitution of the unsupported types with more familiar types. For instance:
-D__sfract=float
-D__fract=float
-D__laccum=double
Note that the substitution only occurs for the purposes of the Polyspace analysis and does not actually occur in your code (even if you were using these types).
This will allow the code to be compiled.
Warnings: Fixed points are not floats in terms of representation. So the values may be different between a real execution and the analysis made by Bug Finder.
I hope this helps!
  2 Kommentare
Shreyas Nayak
Shreyas Nayak am 7 Dez. 2023
Substitue means i need to modify float with -D__sfract in my code?
Shreyas Nayak
Shreyas Nayak am 8 Dez. 2023
Hey Athrava, we can't edit that tricore.h file. What do we need to do? do we need to change float by -D__sfract in our own file.

Melden Sie sich an, um zu kommentieren.

Produkte


Version

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by