mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-24 17:34:47 +00:00
687c13802d
Build with RTTI enabled, needed by e.g. Rubinius (# 722714) Fix multilib installation
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
|