forked from rubinius/rubinius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblueprint.rb
283 lines (231 loc) · 8.81 KB
/
blueprint.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
Daedalus.blueprint do |i|
gcc = i.gcc!(Rubinius::BUILD_CONFIG[:cc],
Rubinius::BUILD_CONFIG[:cxx],
Rubinius::BUILD_CONFIG[:ldshared],
Rubinius::BUILD_CONFIG[:ldsharedxx])
# First define all flags that all code needs to be build with.
# -fno-omit-frame-pointer is needed to get a backtrace on FreeBSD.
# It is enabled by default on OS X, on the other hand, not on Linux.
# To use same build flags across platforms, it is added explicitly.
gcc.cflags << "-pipe -Wall -fno-omit-frame-pointer -g"
# Due to a Clang bug (http://llvm.org/bugs/show_bug.cgi?id=9825),
# -mno-omit-leaf-frame-pointer is needed for Clang on Linux.
# On other combinations of platform and compiler, this flag is implicitly
# assumed from -fno-omit-frame-pointer. To use same build flags across
# platforms, -mno-omit-leaf-frame-pointer is added explicitly.
gcc.cflags << "-mno-omit-leaf-frame-pointer" if Rubinius::BUILD_CONFIG[:cc] == "clang"
# We don't need RTTI information, so disable it. This makes it possible
# to link Rubinius to an LLVM build with RTTI disabled. We also enable
# visibility-inlines-hidden for slightly smaller code size and prevents
# warnings when LLVM is also built with this flag.
gcc.cxxflags << "-fno-rtti -fvisibility-inlines-hidden"
gcc.cflags << Rubinius::BUILD_CONFIG[:system_cflags]
gcc.cflags << Rubinius::BUILD_CONFIG[:user_cflags]
gcc.cxxflags << Rubinius::BUILD_CONFIG[:system_cxxflags]
gcc.cxxflags << Rubinius::BUILD_CONFIG[:user_cxxflags]
if Rubinius::BUILD_CONFIG[:debug_build]
gcc.cflags << "-O0"
gcc.mtime_only = true
else
gcc.cflags << "-O2"
end
if ENV['POKE']
gcc.mtime_only = true
end
# This is necessary for the gcc sync prims to fully work
if Rubinius::BUILD_CONFIG[:x86_32]
gcc.cflags << "-march=i686"
end
Rubinius::BUILD_CONFIG[:defines].each do |flag|
gcc.cflags << "-D#{flag}"
end
gcc.ldflags << "-lm"
if Rubinius::BUILD_CONFIG[:dtrace] #and
#Rubinius::BUILD_CONFIG[:os] =~ /freebsd(9|10)/
gcc.ldflags << "-lelf"
gcc.ldflags << "vm/dtrace/probes.o"
gcc.add_pre_link "rm -f vm/dtrace/probes.o"
blk = lambda { |files| files.select { |f| f =~ %r[vm/.*\.o$] } }
cmd = "dtrace -G -s vm/dtrace/probes.d -o vm/dtrace/probes.o %objects%"
gcc.add_pre_link(cmd, &blk)
end
make = Rubinius::BUILD_CONFIG[:build_make]
if RUBY_PLATFORM =~ /bsd/ and
Rubinius::BUILD_CONFIG[:defines].include?('HAS_EXECINFO')
gcc.ldflags << "-lexecinfo"
end
gcc.ldflags << Rubinius::BUILD_CONFIG[:system_ldflags]
gcc.ldflags << Rubinius::BUILD_CONFIG[:user_ldflags]
# Files
subdirs = %w[ builtin capi util instruments gc llvm missing ].map do |x|
"vm/#{x}/*.{cpp,c}"
end
files = i.source_files "vm/*.{cpp,c}", *subdirs
perl = Rubinius::BUILD_CONFIG[:build_perl] || "perl"
src = Rubinius::BUILD_CONFIG[:sourcedir]
# Libraries
ltm = i.external_lib "vendor/libtommath" do |l|
l.cflags = ["-I#{src}/vendor/libtommath"] + gcc.cflags
l.objects = [l.file("libtommath.a")]
l.to_build do |x|
x.command make
end
end
gcc.add_library ltm
files << ltm
oniguruma = i.library_group "vendor/oniguruma" do |g|
g.depends_on "config.h", "configure"
gcc.cflags.unshift "-I#{src}/vendor/oniguruma"
g.cflags = [ "-DHAVE_CONFIG_H", "-I#{src}/vm/include/capi" ]
g.cflags += gcc.cflags
g.static_library "libonig" do |l|
l.source_files "*.c", "enc/*.c"
end
g.shared_library "enc/trans/big5"
g.shared_library "enc/trans/chinese"
g.shared_library "enc/trans/emoji"
g.shared_library "enc/trans/emoji_iso2022_kddi"
g.shared_library "enc/trans/emoji_sjis_docomo"
g.shared_library "enc/trans/emoji_sjis_kddi"
g.shared_library "enc/trans/emoji_sjis_softbank"
g.shared_library "enc/trans/escape"
g.shared_library "enc/trans/gb18030"
g.shared_library "enc/trans/gbk"
g.shared_library "enc/trans/iso2022"
g.shared_library "enc/trans/japanese"
g.shared_library "enc/trans/japanese_euc"
g.shared_library "enc/trans/japanese_sjis"
g.shared_library "enc/trans/korean"
g.shared_library "enc/trans/newline"
g.shared_library "enc/trans/single_byte"
g.shared_library "enc/trans/utf8_mac"
g.shared_library "enc/trans/utf_16_32"
end
files << oniguruma
double_conversion = i.external_lib "vendor/double-conversion" do |l|
l.cflags = ["-Ivendor/double-conversion/src"] + gcc.cflags
l.objects = [l.file("libdoubleconversion.a")]
l.to_build do |x|
x.command make
end
end
gcc.add_library double_conversion
files << double_conversion
ffi = i.external_lib "vendor/libffi" do |l|
l.cflags = ["-I#{src}/vendor/libffi/include"] + gcc.cflags
l.objects = [l.file(".libs/libffi.a")]
l.to_build do |x|
x.command "sh -c './configure --disable-builddir'" unless File.exist?("Makefile")
x.command make
end
end
gcc.add_library ffi
files << ffi
udis = i.external_lib "vendor/udis86" do |l|
l.cflags = ["-I#{src}/vendor/udis86"] + gcc.cflags
l.objects = [l.file("libudis86/.libs/libudis86.a")]
l.to_build do |x|
unless File.exist?("Makefile") and File.exist?("libudis86/Makefile")
x.command "sh -c ./configure"
end
x.command make
end
end
gcc.add_library udis
files << udis
if Rubinius::BUILD_CONFIG[:vendor_zlib]
zlib = i.external_lib "vendor/zlib" do |l|
l.cflags = ["-I#{src}/vendor/zlib"] + gcc.cflags
l.objects = [l.file("libz.a")]
l.to_build do |x|
unless File.exist?("Makefile") and File.exist?("zconf.h")
x.command "sh -c ./configure"
end
if Rubinius::BUILD_CONFIG[:windows]
x.command "make -f win32/Makefile.gcc"
else
x.command make
end
end
end
gcc.add_library zlib
files << zlib
end
if Rubinius::BUILD_CONFIG[:windows]
winp = i.external_lib "vendor/winpthreads" do |l|
l.cflags = ["-I#{src}/vendor/winpthreads/include"] + gcc.cflags
l.objects = [l.file("libpthread.a")]
l.to_build do |x|
x.command "sh -c ./configure" unless File.exist?("Makefile")
x.command make
end
end
gcc.add_library winp
files << winp
end
if Rubinius::BUILD_CONFIG[:llvm_enabled]
conf = Rubinius::BUILD_CONFIG[:llvm_configure]
include_dir = `#{conf} --includedir`.chomp
gcc.cflags << "-I#{include_dir}"
gcc.cxxflags << Rubinius::BUILD_CONFIG[:llvm_cxxflags]
flags = `#{conf} --cflags`.strip.split(/\s+/)
flags.delete_if { |x| x.index("-O") == 0 }
flags.delete_if { |x| x =~ /-D__STDC/ }
flags.delete_if { |x| x == "-DNDEBUG" }
flags.delete_if { |x| x == "-fomit-frame-pointer" }
flags.delete_if { |x| x == "-pedantic" }
flags.delete_if { |x| x == "-W" }
flags.delete_if { |x| x == "-Wextra" }
# llvm-config may leak FORTIFY_SOURCE in the CFLAGS list on certain
# platforms. If this is the case then debug builds will fail. Sadly there's
# no strict guarantee on how LLVM formats this option, hence the Regexp.
#
# For example, on CentOS the option is added as -Wp,-D_FORTIFY_SOURCE=2.
# There's no strict guarantee that I know of that it will always be this
# exact format.
if Rubinius::BUILD_CONFIG[:debug_build]
flags.delete_if { |x| x =~ /_FORTIFY_SOURCE/ }
end
flags << "-DENABLE_LLVM"
ldflags = Rubinius::BUILD_CONFIG[:llvm_ldflags]
if Rubinius::BUILD_CONFIG[:llvm_shared_objs]
objects = Rubinius::BUILD_CONFIG[:llvm_shared_objs]
else
objects = `#{conf} --libfiles`.strip.split(/\s+/)
end
if Rubinius::BUILD_CONFIG[:windows]
ldflags = ldflags.sub(%r[-L/([a-zA-Z])/], '-L\1:/')
objects.select do |f|
f.sub!(%r[^/([a-zA-Z])/], '\1:/')
File.file? f
end
end
gcc.cflags.concat flags
gcc.ldflags.concat objects
gcc.ldflags << ldflags
end
# Make sure to push these up front so vm/ stuff has priority
dirs = %w[ /vm /vm/include /vm/builtin ]
gcc.cflags.unshift "#{dirs.map { |d| "-I#{src}#{d}" }.join(" ")} -I. -Ivm/test/cxxtest"
gcc.cflags << "-Wno-unused-function"
gcc.cflags << "-Werror"
gcc.cflags << "-DRBX_PROFILER"
gcc.cflags << "-D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS"
gcc.cflags << "-D_LARGEFILE_SOURCE"
gcc.cflags << "-D_FILE_OFFSET_BITS=64"
cli = files.dup
cli << i.source_file("vm/drivers/cli.cpp")
exe = RUBY_PLATFORM =~ /mingw|mswin/ ? 'vm/vm.exe' : 'vm/vm'
i.program exe, *cli
test_files = files.dup
test_files << i.source_file("vm/test/runner.cpp") { |f|
tests = Dir["vm/test/**/test_*.hpp"].sort
f.depends_on tests
f.autogenerate do |x|
x.command("#{perl} vm/test/cxxtest/cxxtestgen.pl --error-printer --have-eh " +
"--abort-on-fail -include=vm/test/test_setup.h -o vm/test/runner.cpp " +
tests.join(' '))
end
}
i.program "vm/test/runner", *test_files
end