Got the thing to build using a vendored LLVM

This commit is contained in:
2022-05-26 17:24:50 +02:00
parent 4c2dc2284a
commit 86d317f3ba
6 changed files with 31 additions and 9 deletions

View File

@@ -10,7 +10,7 @@
#include <llvm/Target/TargetOptions.h>
#include <llvm/Support/Host.h>
#include <llvm/Support/TargetSelect.h>
#include <llvm/Support/TargetRegistry.h>
#include <llvm/MC/TargetRegistry.h>
#include <llvm/IR/LegacyPassManager.h>
#include <llvm/Transforms/IPO/PassManagerBuilder.h>
#include <llvm/Transforms/InstCombine/InstCombine.h>

View File

@@ -3,7 +3,9 @@
//
#include "runtime.hpp"
#include <llvm/IR/LegacyPassManager.h>
#include <llvm/Pass.h>
#include <llvm/Transforms/InstCombine/InstCombine.h>
#include <llvm/Transforms/Scalar.h>
#include <llvm/Transforms/Scalar/GVN.h>