1 2 3 4 5 6 7 8 9
#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