39374b4272
Distro changes since 11.0: - html docs are now included (except lldb where they are broken) - manpages are now included - enabled linker build id - libcxx(abi), libunwind, libomp are now built as subpackages - disabled clangd on ppc32 (crashes assembler) - template cleanups Cross fixes by Leah. Closes https://github.com/void-linux/void-packages/issues/28609 Closes https://github.com/void-linux/void-packages/issues/17935
9 lines
168 B
C
9 lines
168 B
C
#include <bits/wordsize.h>
|
|
|
|
#if __WORDSIZE == 32
|
|
#include "llvm-config-32.h"
|
|
#elif __WORDSIZE == 64
|
|
#include "llvm-config-64.h"
|
|
#else
|
|
#error "Unknown word size"
|
|
#endif
|