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
Searching the module showed no results for the expected bound names (llvm.initialize_native_target(), etc.), however, the target specific functions are loaded correctly (e.g., llvm.initialize_x86_target() and llvm.initialize_riscv_target()).
I believe this may be because the functions are defined in Target.h as static, and therefore presumably being omitted.
The text was updated successfully, but these errors were encountered:
The set of functions
LLVMInitializeNative*
andLLVMInitializeAll*
do not appear to exist in the bindings.A typical LLVM-C program might include the following lines to automatically configure for the current host:
Searching the module showed no results for the expected bound names (
llvm.initialize_native_target()
, etc.), however, the target specific functions are loaded correctly (e.g.,llvm.initialize_x86_target()
andllvm.initialize_riscv_target()
).I believe this may be because the functions are defined in
Target.h
as static, and therefore presumably being omitted.The text was updated successfully, but these errors were encountered: