summarylogtreecommitdiffstats
path: root/0001-use-clang-llvm11-binaries-package-to-build-odin.patch
blob: 255099859e82f7529751623a711aa2cf4b2ca36c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
From 7b1c32778d81539d410be7af791f4ca2a27099ee Mon Sep 17 00:00:00 2001
From: pyxel <imhxnna@gmail.com>
Date: Sun, 12 Sep 2021 21:18:47 -0400
Subject: [PATCH] use clang+llvm11-binaries package to build odin

---
 Makefile | 57 +++++++++++++++++++++++++++++---------------------------
 1 file changed, 30 insertions(+), 27 deletions(-)

diff --git a/Makefile b/Makefile
index cdf4f0fc..eeb4e57e 100644
--- a/Makefile
+++ b/Makefile
@@ -7,33 +7,36 @@ CC=clang
 
 OS=$(shell uname)
 
-ifeq ($(OS), Darwin)
-    LLVM_CONFIG=llvm-config
-    ifneq ($(shell llvm-config --version | grep '^11\.'),)
-        LLVM_CONFIG=llvm-config
-    else
-        $(error "Requirement: llvm-config must be version 11")
-    endif
-
-    LDFLAGS:=$(LDFLAGS) -liconv
-    CFLAGS:=$(CFLAGS) $(shell $(LLVM_CONFIG) --cxxflags --ldflags)
-    LDFLAGS:=$(LDFLAGS) -lLLVM-C
-endif
-ifeq ($(OS), Linux)
-    LLVM_CONFIG=llvm-config-11
-    ifneq ($(shell which llvm-config-11 2>/dev/null),)
-        LLVM_CONFIG=llvm-config-11
-    else
-        ifneq ($(shell llvm-config --version | grep '^11\.'),)
-            LLVM_CONFIG=llvm-config
-        else
-            $(error "Requirement: llvm-config must be version 11")
-        endif
-    endif
-
-    CFLAGS:=$(CFLAGS) $(shell $(LLVM_CONFIG) --cxxflags --ldflags)
-    LDFLAGS:=$(LDFLAGS) $(shell $(LLVM_CONFIG) --libs core native --system-libs)
-endif
+#ifeq ($(OS), Darwin)
+#    LLVM_CONFIG=llvm-config
+#    ifneq ($(shell llvm-config --version | grep '^11\.'),)
+#        LLVM_CONFIG=llvm-config
+#    else
+#        $(error "Requirement: llvm-config must be version 11")
+#    endif
+#
+#    LDFLAGS:=$(LDFLAGS) -liconv
+#    CFLAGS:=$(CFLAGS) $(shell $(LLVM_CONFIG) --cxxflags --ldflags)
+#    LDFLAGS:=$(LDFLAGS) -lLLVM-C
+#endif
+#ifeq ($(OS), Linux)
+#    LLVM_CONFIG=llvm-config-11
+#    ifneq ($(shell which llvm-config-11 2>/dev/null),)
+#        LLVM_CONFIG=llvm-config-11
+#    else
+#        ifneq ($(shell llvm-config --version | grep '^11\.'),)
+#            LLVM_CONFIG=llvm-config
+#        else
+#            $(error "Requirement: llvm-config must be version 11")
+#        endif
+#    endif
+#
+#    CFLAGS:=$(CFLAGS) $(shell $(LLVM_CONFIG) --cxxflags --ldflags)
+#    LDFLAGS:=$(LDFLAGS) $(shell $(LLVM_CONFIG) --libs core native --system-libs)
+#endif
+
+CFLAGS:=$(CFLAGS) $(shell /opt/clang+llvm11/bin/llvm-config 2>/dev/null --cxxflags)
+LDFLAGS:=$(LDFLAGS) $(shell /opt/clang+llvm11/bin/llvm-config 2>/dev/null --libs --ldflags) -lz -ltinfo
 
 all: debug demo
 
-- 
2.33.0