Book a Demo

Author Topic: analyzer used for c in conjunction with mingw misses functions (callstack)  (Read 5021 times)

Konse

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
i try to analyse c code for some c based design patterns like object or factory pattern.
the sequence recorder seem not to trace library fuctions like "memset" but other ones like "printf".

memset: string.h :
Code: [Select]
void * __cdecl memset(void *_Dst,int _Val,size_t _Size);printf: stdio.h:
Code: [Select]
__mingw_ovr
__attribute__((__format__ (gnu_printf, 1, 2))) __MINGW_ATTRIB_NONNULL(1)
int printf (const char *__format, ...)
{

I am not sure whether i am missing something in the configurations, hence in the profiler it is written that there is "unsupported or missing debug platform in analyzer script '%s'" (not sure whether this is related)?
=> was double-checking several times with the tutorials, so it seems to be a bug

Note: adding the memset, free and malloc function into a separate wrapper (with a prefix) was adding it to the callgraph
« Last Edit: March 22, 2024, 09:57:05 pm by Konse »