forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathllvm36.rb
315 lines (257 loc) · 10.6 KB
/
llvm36.rb
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
class CodesignRequirement < Requirement
include FileUtils
fatal true
satisfy(:build_env => false) do
mktemp do
touch "llvm_check.txt"
quiet_system "/usr/bin/codesign", "-s", "lldb_codesign", "--dryrun", "llvm_check.txt"
end
end
def message
<<-EOS.undent
lldb_codesign identity must be available to build with LLDB.
See: https://llvm.org/svn/llvm-project/lldb/trunk/docs/code-signing.txt
EOS
end
end
class Llvm36 < Formula
desc "A modular and reusable compiler system"
homepage "http://llvm.org/"
stable do
url "http://llvm.org/releases/3.6.2/llvm-3.6.2.src.tar.xz"
sha256 "f60dc158bfda6822de167e87275848969f0558b3134892ff54fced87e4667b94"
resource "clang" do
url "http://llvm.org/releases/3.6.2/cfe-3.6.2.src.tar.xz"
sha256 "ae9180466a23acb426d12444d866b266ff2289b266064d362462e44f8d4699f3"
end
resource "clang-tools-extra" do
url "http://llvm.org/releases/3.6.2/clang-tools-extra-3.6.2.src.tar.xz"
sha256 "6a0ec627d398f501ddf347060f7a2ccea4802b2494f1d4fd7bda3e0442d04feb"
end
resource "compiler-rt" do
url "http://llvm.org/releases/3.6.2/compiler-rt-3.6.2.src.tar.xz"
sha256 "0f2ff37d80a64575fecd8cf0d5c50f7ac1f837ddf700d1855412bb7547431d87"
end
resource "polly" do
url "http://llvm.org/releases/3.6.2/polly-3.6.2.src.tar.xz"
sha256 "f2a956730b76212f22a1c10f35f195795e4d027ad28c226f97ddb8c0fd16bcbc"
end
resource "lld" do
url "http://llvm.org/releases/3.6.2/lld-3.6.2.src.tar.xz"
sha256 "43f553c115563600577764262f1f2fac3740f0c639750f81e125963c90030b33"
end
resource "lldb" do
url "http://llvm.org/releases/3.6.2/lldb-3.6.2.src.tar.xz"
sha256 "940dc96b64919b7dbf32c37e0e1d1fc88cc18e1d4b3acf1e7dfe5a46eb6523a9"
end
resource "libcxx" do
url "http://llvm.org/releases/3.6.2/libcxx-3.6.2.src.tar.xz"
sha256 "52f3d452f48209c9df1792158fdbd7f3e98ed9bca8ebb51fcd524f67437c8b81"
end
if MacOS.version <= :snow_leopard
resource "libcxxabi" do
url "http://llvm.org/releases/3.6.2/libcxxabi-3.6.2.src.tar.xz"
sha256 "6fb48ce5a514686b9b75e73e59869f782ed374a86d71be8423372e4b3329b09b"
end
end
end
bottle do
sha256 "2682bb82085611e6591ef98f9006fbcf0d90cfd5e57217a2bb460a217decc878" => :yosemite
sha256 "3baf01ebf2d3ed4eb6aaa77bda189f80359c11d081549e3418ad5507010343f4" => :mavericks
sha256 "501138751826f671f31a2ab77b58b749e179bc93df957655ca5a7fcb35c1972e" => :mountain_lion
end
head do
url "http://llvm.org/git/llvm.git", :branch => "release_36"
resource "clang" do
url "http://llvm.org/git/clang.git", :branch => "release_36"
end
resource "clang-tools-extra" do
url "http://llvm.org/git/clang-tools-extra.git", :branch => "release_36"
end
resource "compiler-rt" do
url "http://llvm.org/git/compiler-rt.git", :branch => "release_36"
end
resource "polly" do
url "http://llvm.org/git/polly.git", :branch => "release_36"
end
resource "lld" do
url "http://llvm.org/git/lld.git"
end
resource "lldb" do
url "http://llvm.org/git/lldb.git", :branch => "release_36"
end
resource "libcxx" do
url "http://llvm.org/git/libcxx.git", :branch => "release_36"
end
if MacOS.version <= :snow_leopard
resource "libcxxabi" do
url "http://llvm.org/git/libcxxabi.git", :branch => "release_36"
end
end
end
resource "isl" do
url "http://isl.gforge.inria.fr/isl-0.14.1.tar.gz"
sha256 "bd15d06d050a92a6720fc7e2a58022a3fd1a73c4996cc358ba50864fd5e86c35"
end
patch :DATA
option :universal
option "with-lld", "Build LLD linker"
option "with-lldb", "Build LLDB debugger"
option "with-asan", "Include support for -faddress-sanitizer (from compiler-rt)"
option "with-all-targets", "Build all target backends"
option "with-python", "Build lldb bindings against the python in PATH instead of system Python"
option "without-shared", "Don't build LLVM as a shared library"
option "without-assertions", "Speeds up LLVM, but provides less debug information"
# required to build isl
depends_on "libtool" => :build
depends_on "pkg-config" => :build
depends_on "gmp"
depends_on "libffi" => :recommended
depends_on :python => :optional
if build.with? "lldb"
depends_on "swig"
depends_on CodesignRequirement
end
# version suffix
def ver
"3.6"
end
# LLVM installs its own standard library which confuses stdlib checking.
cxxstdlib_check :skip
# Apple's libstdc++ is too old to build LLVM
fails_with :gcc
fails_with :llvm
def install
# Apple's libstdc++ is too old to build LLVM
ENV.libcxx if ENV.compiler == :clang
clang_buildpath = buildpath/"tools/clang"
libcxx_buildpath = buildpath/"projects/libcxx"
libcxxabi_buildpath = buildpath/"libcxxabi" # build failure if put in projects due to no Makefile
clang_buildpath.install resource("clang")
libcxx_buildpath.install resource("libcxx")
(buildpath/"tools/polly").install resource("polly")
(buildpath/"tools/clang/tools/extra").install resource("clang-tools-extra")
(buildpath/"tools/lld").install resource("lld") if build.with? "lld"
(buildpath/"tools/lldb").install resource("lldb") if build.with? "lldb"
(buildpath/"projects/compiler-rt").install resource("compiler-rt") if build.with? "asan"
if build.universal?
ENV.permit_arch_flags
ENV["UNIVERSAL"] = "1"
ENV["UNIVERSAL_ARCH"] = Hardware::CPU.universal_archs.join(" ")
end
ENV["REQUIRES_RTTI"] = "1"
install_prefix = lib/"llvm-#{ver}"
gmp_prefix = Formula["gmp"].opt_prefix
isl_prefix = install_prefix/"libexec/isl"
resource("isl").stage do
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{isl_prefix}",
"--with-gmp=system",
"--with-gmp-prefix=#{gmp_prefix}"
system "make"
system "make", "install"
end
args = [
"--prefix=#{install_prefix}",
"--enable-optimized",
"--disable-bindings",
"--with-gmp=#{gmp_prefix}",
"--with-isl=#{isl_prefix}",
]
if build.with? "all-targets"
args << "--enable-targets=all"
else
args << "--enable-targets=host"
end
args << "--enable-shared" if build.with? "shared"
args << "--disable-assertions" if build.without? "assertions"
args << "--enable-libffi" if build.with? "libffi"
system "./configure", *args
system "make", "VERBOSE=1"
system "make", "VERBOSE=1", "install"
if MacOS.version <= :snow_leopard
libcxxabi_buildpath.install resource("libcxxabi")
cd libcxxabi_buildpath/"lib" do
# Set rpath to save user from setting DYLD_LIBRARY_PATH
inreplace "buildit", "-install_name /usr/lib/libc++abi.dylib", "-install_name #{install_prefix}/usr/lib/libc++abi.dylib"
ENV["CC"] = "#{install_prefix}/bin/clang"
ENV["CXX"] = "#{install_prefix}/bin/clang++"
ENV["TRIPLE"] = "*-apple-*"
system "./buildit"
(install_prefix/"usr/lib").install "libc++abi.dylib"
cp libcxxabi_buildpath/"include/cxxabi.h", install_prefix/"lib/c++/v1"
end
# Snow Leopard make rules hardcode libc++ and libc++abi path.
# Change to Cellar path here.
inreplace "#{libcxx_buildpath}/lib/buildit" do |s|
s.gsub! "-install_name /usr/lib/libc++.1.dylib", "-install_name #{install_prefix}/usr/lib/libc++.1.dylib"
s.gsub! "-Wl,-reexport_library,/usr/lib/libc++abi.dylib", "-Wl,-reexport_library,#{install_prefix}/usr/lib/libc++abi.dylib"
end
# On Snow Leopard and older system libc++abi is not shipped but
# needed here. It is hard to tweak environment settings to change
# include path as libc++ uses a custom build script, so just
# symlink the needed header here.
ln_s libcxxabi_buildpath/"include/cxxabi.h", libcxx_buildpath/"include"
end
# Putting libcxx in projects only ensures that headers are installed.
# Manually "make install" to actually install the shared libs.
libcxx_make_args = [
# Use the built clang for building
"CC=#{install_prefix}/bin/clang",
"CXX=#{install_prefix}/bin/clang++",
# Properly set deployment target, which is needed for Snow Leopard
"MACOSX_DEPLOYMENT_TARGET=#{MacOS.version}",
# The following flags are needed so it can be installed correctly.
"DSTROOT=#{install_prefix}",
"SYMROOT=#{libcxx_buildpath}",
]
system "make", "-C", libcxx_buildpath, "install", *libcxx_make_args
(share/"clang-#{ver}/tools").install Dir["tools/clang/tools/scan-{build,view}"]
inreplace share/"clang-#{ver}/tools/scan-build/scan-build", "$RealBin/bin/clang", install_prefix/"bin/clang"
ln_s share/"clang-#{ver}/tools/scan-build/scan-build", install_prefix/"bin"
ln_s share/"clang-#{ver}/tools/scan-view/scan-view", install_prefix/"bin"
(install_prefix/"share/man/man1").install share/"clang-#{ver}/tools/scan-build/scan-build.1"
(lib/"python2.7/site-packages").install "bindings/python/llvm" => "llvm-#{ver}",
clang_buildpath/"bindings/python/clang" => "clang-#{ver}"
(lib/"python2.7/site-packages").install_symlink install_prefix/"lib/python2.7/site-packages/lldb" => "lldb-#{ver}" if build.with? "lldb"
Dir.glob(install_prefix/"bin/*") do |exec_path|
basename = File.basename(exec_path)
bin.install_symlink exec_path => "#{basename}-#{ver}"
end
Dir.glob(install_prefix/"share/man/man1/*") do |manpage|
basename = File.basename(manpage, ".1")
man1.install_symlink manpage => "#{basename}-#{ver}.1"
end
end
def caveats; <<-EOS.undent
Extra tools are installed in #{opt_share}/clang-#{ver}
To link to libc++, something like the following is required:
CXX="clang++-#{ver} -stdlib=libc++"
CXXFLAGS="$CXXFLAGS -nostdinc++ -I#{opt_lib}/llvm-#{ver}/include/c++/v1"
LDFLAGS="$LDFLAGS -L#{opt_lib}/llvm-#{ver}/lib"
EOS
end
test do
system "#{bin}/llvm-config-#{ver}", "--version"
end
end
__END__
diff --git a/Makefile.rules b/Makefile.rules
index ebebc0a..b0bb378 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -599,7 +599,12 @@ ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
ifneq ($(HOST_OS),Darwin)
LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
else
- LD.Flags += -Wl,-install_name -Wl,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)"
+ LD.Flags += -Wl,-install_name
+ ifdef LOADABLE_MODULE
+ LD.Flags += -Wl,"$(PROJ_libdir)/$(LIBRARYNAME)$(SHLIBEXT)"
+ else
+ LD.Flags += -Wl,"$(PROJ_libdir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)"
+ endif
endif
endif
endif