tracy/public
Robert Adam ece8779362 Fix cpuid symbol redefinition on older GCC versions
Since commit 940f32c1a8 building the Tracy
library on Linux using a GCC version < 11 would result in compile errors
due to symbol redefinitions of __get_cpuid_max, __get_cpuid and
__get_cpuid_count.

This is because prior to GCC 11 the cpuid.h header file did not have any
include guards and thus including this header more than once would
produce the abovementioned errors.

To work around this issue, including cpuid.h has been wrapped into a
custom header file that itself uses include guards and thus shields
cpuid.h from being included multiple times.

Fixes #452
2022-08-31 17:59:46 +02:00
..
client Fix cpuid symbol redefinition on older GCC versions 2022-08-31 17:59:46 +02:00
common Move TracyVersion.hpp to common. 2022-08-27 16:05:36 +02:00
libbacktrace Resolve relative file names to absolute ones. 2022-08-16 23:48:46 +02:00
tracy A bit more consistent usage of atomic 2022-08-26 13:25:58 +03:00
TracyClient.cpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00