Displaying 1 result from an estimated 1 matches for "themybackendtarget".
2012 Jun 19
1
[LLVMdev] llvm::Triple error in new backend
...ke several other targets I have a file 'mybackendTargetInfo.cpp' in the subdirectory 'TargetInfo'. The content of this file is:
#include "mybackend.h"
#include "llvm/Module.h"
#include "llvm/Support/TargetRegistry.h"
using namespace llvm;
Target llvm::TheMybackendTarget;
extern "C" void LLVMInitializeMybackendTargetInfo() {
RegisterTarget<Triple::mybackend> X(TheMybackendTarget, "mybackend", "mybackend");
}
Nothing special I think.
The error message of the compiler is:
llvm[1]: Compiling mybackendTargetInfo.cpp for Release...