aboutsummaryrefslogtreecommitdiff
path: root/examples/Kaleidoscope/Orc/lazy_codegen/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Kaleidoscope/Orc/lazy_codegen/Makefile')
-rw-r--r--examples/Kaleidoscope/Orc/lazy_codegen/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/examples/Kaleidoscope/Orc/lazy_codegen/Makefile b/examples/Kaleidoscope/Orc/lazy_codegen/Makefile
deleted file mode 100644
index 5536314f2a30..000000000000
--- a/examples/Kaleidoscope/Orc/lazy_codegen/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-UNAME := $(shell uname -s)
-
-ifeq ($(UNAME),Darwin)
- CXX := xcrun --sdk macosx clang++
-else
- CXX := clang++
-endif
-
-LLVM_CXXFLAGS := $(shell llvm-config --cxxflags)
-LLVM_LDFLAGS := $(shell llvm-config --ldflags --system-libs --libs core orcjit native)
-
-toy: toy.cpp
- $(CXX) $(LLVM_CXXFLAGS) -Wall -std=c++11 -g -O0 -rdynamic -fno-rtti -o toy toy.cpp $(LLVM_LDFLAGS)
-
-.PHONY: clean
-clean:
- rm -f toy