forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
llvm33.rb
285 lines (231 loc) · 10.1 KB
/
llvm33.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
require 'formula'
class Llvm33 < Formula
homepage 'http://llvm.org/'
revision 1
stable do
url 'http://llvm.org/releases/3.3/llvm-3.3.src.tar.gz'
sha1 'c6c22d5593419e3cb47cbcf16d967640e5cce133'
resource 'clang' do
url 'http://llvm.org/releases/3.3/cfe-3.3.src.tar.gz'
sha1 'ccd6dbf2cdb1189a028b70bcb8a22509c25c74c8'
end
resource 'clang-tools-extra' do
url 'http://llvm.org/releases/3.3/clang-tools-extra-3.3.src.tar.gz'
sha1 '6f7af9ba8014f7e286a02e4ae2e3f2017b8bfac2'
end
resource 'compiler-rt' do
url 'http://llvm.org/releases/3.3/compiler-rt-3.3.src.tar.gz'
sha1 '745386ec046e3e49742e1ecb6912c560ccd0a002'
end
resource 'polly' do
url 'http://llvm.org/releases/3.3/polly-3.3.src.tar.gz'
sha1 'eb75f5674fedf77425d16c9c0caec04961f03e04'
end
resource 'libcxx' do
url 'http://llvm.org/releases/3.3/libcxx-3.3.src.tar.gz'
sha1 '7bea00bc1031bf3bf6c248e57c1f4e0874c18c04'
end
end
head do
url 'http://llvm.org/git/llvm.git', :branch => 'release_33'
resource 'clang' do
url 'http://llvm.org/git/clang.git', :branch => 'release_33'
end
resource 'clang-tools-extra' do
url 'http://llvm.org/git/clang-tools-extra.git', :branch => 'release_33'
end
resource 'compiler-rt' do
url 'http://llvm.org/git/compiler-rt.git', :branch => 'release_33'
end
resource 'polly' do
url 'http://llvm.org/git/polly.git', :branch => 'release_33'
end
resource 'libcxx' do
url 'http://llvm.org/git/libcxx.git', :branch => 'release_33'
end
end
if MacOS.version <= :snow_leopard
# Not tarball release for libc++abi yet. Using latest branch.
resource 'libcxxabi' do
url 'http://llvm.org/git/libcxxabi.git', :branch => 'release_32'
end
resource 'clang-unwind-patch' do
url 'http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/unwind.h?r1=172666&r2=189535&view=patch', :using => :nounzip
sha1 'b40f6dba4928add36945c50e5b89ca0988147cd2'
end
end
# Fix Makefile bug concerning MacOSX >= 10.10
# See: http://llvm.org/bugs/show_bug.cgi?id=19951
patch :DATA
option :universal
option 'with-libcxx', 'Build libc++ standard library support'
option 'with-clang', 'Build Clang C/ObjC/C++ frontend'
option 'with-asan', 'Include support for -faddress-sanitizer (from compiler-rt)'
option 'disable-shared', "Don't build LLVM as a shared library"
option 'all-targets', 'Build all target backends'
option 'rtti', 'Build with C++ RTTI'
option 'disable-assertions', 'Speeds up LLVM, but provides less debug information'
depends_on :python => :recommended
depends_on 'gmp4'
depends_on 'isl011'
depends_on 'cloog018'
depends_on 'libffi' => :recommended
def ver; '3.3'; end # version suffix
# LLVM installs its own standard library which confuses stdlib checking.
cxxstdlib_check :skip
def install
if build.with? "python" and build.include? 'disable-shared'
raise 'The Python bindings need the shared library.'
end
if build.with? 'libcxx' and build.without? 'clang'
raise '"--with-libcxx" requires "--with-clang".'
end
if build.with? 'libcxx' and not build.include? 'rtti'
raise '"--with-libcxx" requires "rtti".'
end
polly_buildpath = buildpath/'tools/polly'
clang_buildpath = buildpath/'tools/clang'
clang_tools_extra_buildpath = buildpath/'tools/clang/tools/extra'
compiler_rt_buildpath = buildpath/'projects/compiler-rt'
libcxx_buildpath = buildpath/'projects/libcxx'
libcxxabi_buildpath = buildpath/'libcxxabi' # build failure if put in projects due to no Makefile
polly_buildpath.install resource('polly')
clang_buildpath.install resource('clang') if build.with? 'clang'
clang_tools_extra_buildpath.install resource('clang-tools-extra') if build.with? 'clang'
compiler_rt_buildpath.install resource('compiler-rt') if build.with? 'asan'
libcxx_buildpath.install resource('libcxx') if build.with? 'libcxx'
# On Snow Leopard and below libc++abi is not shipped but needed for libc++.
if MacOS.version <= :snow_leopard and build.with? 'libcxx'
libcxxabi_buildpath.install resource('libcxxabi')
buildpath.install resource('clang-unwind-patch')
cd clang_buildpath do
system "patch -p2 -N < #{buildpath}/unwind.h"
end
end
if build.universal?
ENV.permit_arch_flags
ENV['UNIVERSAL'] = '1'
ENV['UNIVERSAL_ARCH'] = Hardware::CPU.universal_archs.join(' ')
end
ENV['REQUIRES_RTTI'] = '1' if build.include? 'rtti'
install_prefix = lib/"llvm-#{ver}"
args = [
"--prefix=#{install_prefix}",
"--enable-optimized",
# As of LLVM 3.1, attempting to build ocaml bindings with Homebrew's
# OCaml 3.12.1 results in errors.
"--disable-bindings",
"--with-gmp=#{Formula["gmp4"].opt_prefix}",
"--with-isl=#{Formula["isl011"].opt_prefix}",
"--with-cloog=#{Formula["cloog018"].opt_prefix}"
]
if build.include? 'all-targets'
args << '--enable-targets=all'
else
args << '--enable-targets=host'
end
args << "--enable-shared" unless build.include? 'disable-shared'
args << "--disable-assertions" if build.include? 'disable-assertions'
args << "--enable-libffi" if build.with? 'libffi'
system './configure', *args
system 'make', 'VERBOSE=1'
system 'make', 'VERBOSE=1', 'install'
# Snow Leopard is not shipped with libc++abi. Manually build here.
cd libcxxabi_buildpath/'lib' do
# Set rpath to save user from setting DYLD_LIBRARY_PATH
inreplace libcxxabi_buildpath/'lib/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 libs.
(install_prefix/'usr/lib/').install libcxxabi_buildpath/'lib/libc++abi.dylib'
# Install headers.
cp libcxxabi_buildpath/'include/cxxabi.h', install_prefix/'lib/c++/v1/'
end if MacOS.version <= :snow_leopard and build.with? 'libcxx'
# Putting libcxx in projects only ensures that headers are installed.
# Manually "make install" to actually install the shared libs.
cd libcxx_buildpath do
if MacOS.version <= :snow_leopard
# Snow Leopard make rules hardcode libc++ and libc++abi path.
# Change to Cellar path here.
inreplace libcxx_buildpath/'lib/buildit', '-install_name /usr/lib/libc++.1.dylib', "-install_name #{install_prefix}/usr/lib/libc++.1.dylib"
inreplace libcxx_buildpath/'lib/buildit', '-Wl,-reexport_library,/usr/lib/libc++abi.dylib', "-Wl,-reexport_library,#{install_prefix}/usr/lib/libc++abi.dylib"
end
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}"
]
# 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' if MacOS.version <= :snow_leopard
system 'make', 'install', *libcxx_make_args
end if build.with? 'libcxx'
# Install Clang tools
(share/"clang-#{ver}/tools").install clang_buildpath/'tools/scan-build', clang_buildpath/'tools/scan-view' if build.with? 'clang'
if build.with? "python"
# Install llvm python bindings.
mv buildpath/'bindings/python/llvm', buildpath/"bindings/python/llvm-#{ver}"
(lib+'python2.7/site-packages').install buildpath/"bindings/python/llvm-#{ver}"
# Install clang tools and bindings if requested.
if build.with? 'clang'
mv clang_buildpath/'bindings/python/clang', clang_buildpath/"bindings/python/clang-#{ver}"
(lib+'python2.7/site-packages').install clang_buildpath/"bindings/python/clang-#{ver}"
end
end
# Link executables to bin and add suffix to avoid conflicts
Dir.glob(install_prefix/'bin/*') do |exec_path|
basename = File.basename(exec_path)
bin.install_symlink exec_path => "#{basename}-#{ver}"
end
# Also link man pages
Dir.glob(install_prefix/'share/man/man1/*') do |manpage|
basename = File.basename(manpage, ".1")
man1.install_symlink manpage => "#{basename}-#{ver}.1"
end
end
test do
system "#{bin}/llvm-config-#{ver}", "--version"
end
def caveats
s = ''
if build.with? 'clang'
s += "Extra tools are installed in #{HOMEBREW_PREFIX/"share/clang-#{ver}"}."
end
if build.with? 'libcxx'
include_path = HOMEBREW_PREFIX/"lib/llvm-#{ver}/lib/c++/v1"
libs_path = HOMEBREW_PREFIX/"lib/llvm-#{ver}/usr/lib"
s += <<-EOS.undent
To link to libc++ built here, please adjust your environment as follow:
CXX="clang++-#{ver} -stdlib=libc++"
CXXFLAGS="${CXXFLAGS} -nostdinc++ -I#{include_path}"
LDFLAGS="${LDFLAGS} -L#{libs_path}"
EOS
end
s
end
end
__END__
diff --git a/Makefile.rules b/Makefile.rules
index f0c542b..ec05ac3 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -571,9 +571,9 @@ ifeq ($(HOST_OS),Darwin)
DARWIN_VERSION := `sw_vers -productVersion`
endif
# Strip a number like 10.4.7 to 10.4
- DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
+ DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]+).*/\1/')
# Get "4" out of 10.4 for later pieces in the makefile.
- DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
+ DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]+).*/\1/')
LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
SharedLinkOptions := -dynamiclib