mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-01-24 02:50:27 +01:00
The __x86_64__ macro identifies a CPU family, and is unfortunately not enough to identify a concrete ABI. The normal x86_64 ABI that is used by practical Linux distributions is LP64 (i.e. 32-bit int, and 64-bit long and pointer), and defines __x86_64__ and __LP64__. x32 is a niche ILP32 ABI (i.e. 32-bit int, long and pointer) for x86_64 CPUs, which has different struct sizes due to sizeof(long) and sizeof(void *) being smaller. It defines __x86_64__ and __ILP32__. Signed-off-by: Simon McVittie <smcv@debian.org> |
||
|---|---|---|
| .. | ||
| meson.build | ||
| test-array.c | ||
| test-client.c | ||
| test-context.c | ||
| test-cpp.cpp | ||
| test-endpoint.c | ||
| test-interfaces.c | ||
| test-properties.c | ||
| test-stream.c | ||
| test-utils.c | ||