Weak symbols in codeprover
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Stein Heselmans
le 31 Août 2017
Commenté : Stein Heselmans
le 6 Sep 2017
We use the gcc attributing in order to mark functions weak in libraries. That way projects including these libraries can overwrite the content of that weak function with custom content.
e.g. usage in a library:
void __attribute__((weak)) foo (void)
{
}
The codeprover (polyspace-code-prover-nodesktop) doesn't seem to understand this attribute, as it is gcc specific implementation.
Does codeprover provide some alternative syntax for this?
I can see a valid alternative, but that would be quiet intrusive for our libraries:
#ifndef NO_FOO_IMPLEMENTATION
void foo(void)
{
}
#endif
So what does codeprover support in order to mark a function as weak, over writable by other implementation.
0 commentaires
Réponse acceptée
Alexandre De Barros
le 31 Août 2017
Hello,
when you write "The codeprover doesn't seem to understand this attribute", do you mean that you have a compilation error?
If yes, I can't reproduce it when selecting "gnu4.6" as the "compiler" in Polyspace (version R2017a).
What version of Polyspace do you use, and what is the value associated to the -compiler option?
Best regards,
Alexandre
3 commentaires
Alexandre De Barros
le 1 Sep 2017
A workaround is to make these functions static inside the Polyspace verification.
Hence, multiple definitions will be allowed.
Could you contact the support? They will tell you how to do that.
Best regards,
Alexandre
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with Polyspace Products for Ada dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!