Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 262 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 262 Bytes

feel-llvm

Use

  1. build llvm ir

  2. build llvm obj

llc -filetype=obj main.ll -o main.o
  1. link to bin
gcc main.o
  1. link more file
llvm-link file1.ll file2.ll -o linked.ir
  1. test
clang++ test.cpp main.o -o main && ./main