From 394366cf1c32aae428e588b262a9dc365d897a70 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sat, 18 Jun 2022 19:41:38 +0200 Subject: clang: add post about in memory c -> llvm ir --- content/2022-06-18-libclang-c-to-llvm-ir/Makefile | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 content/2022-06-18-libclang-c-to-llvm-ir/Makefile (limited to 'content/2022-06-18-libclang-c-to-llvm-ir/Makefile') diff --git a/content/2022-06-18-libclang-c-to-llvm-ir/Makefile b/content/2022-06-18-libclang-c-to-llvm-ir/Makefile new file mode 100644 index 0000000..ec36db3 --- /dev/null +++ b/content/2022-06-18-libclang-c-to-llvm-ir/Makefile @@ -0,0 +1,27 @@ +LIBS = $(shell llvm-config --libs) +LIBS += -lclang-cpp + +CXXFLAGS = -Wall +CXXFLAGS += -Wextra +CXXFLAGS += -Werror +CXXFLAGS += -O3 + +SAN ?= 1 +ifeq ($(SAN),1) +FLAGS = -fsanitize=address -fsanitize=leak -fsanitize=undefined +endif + +run: gen-ir + ./$^ + +gen-ir: gen-ir.o + $(CXX) -o $@ $^ $(LIBS) $(FLAGS) + +%.o: %.cc + $(CXX) -o $@ -c $^ $(CXXFLAGS) $(FLAGS) + +fmt: + clang-format -i *.cc + +clean: + $(RM) gen-ir *.o -- cgit v1.2.3