You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to wrap the LLVM 3.8 C API as per the example (updated version here), but I'm running into different issues:
#define LLVM_NATIVE_ARCH X86 --> const LLVM_NATIVE_ARCH = X86 --> UndefVarError: X86 not defined
Some functions (eg. LLVMGetTargetMachineFeatureString) are wrapped multiple times, even though only defined in a single header file (TargetMachine.h) and there's only a single WRAPPING HEADER: TargetMachine.h in the output
off_t type is undefined (used in llvm-c/lto.h)
The text was updated successfully, but these errors were encountered:
I tried to wrap the LLVM 3.8 C API as per the example (updated version here), but I'm running into different issues:
#define LLVM_NATIVE_ARCH X86
-->const LLVM_NATIVE_ARCH = X86
-->UndefVarError: X86 not defined
LLVMGetTargetMachineFeatureString
) are wrapped multiple times, even though only defined in a single header file (TargetMachine.h
) and there's only a singleWRAPPING HEADER: TargetMachine.h
in the outputoff_t
type is undefined (used inllvm-c/lto.h
)The text was updated successfully, but these errors were encountered: