blob: 25aeec1912b7ddf9ff064bf89963077216dace68 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001#!/usr/bin/perl
2
3# This script will take a number ($ENV{SCRIPT_INPUT_FILE_COUNT}) of static archive files
4# and pull them apart into object files. These object files will be placed in a directory
5# named the same as the archive itself without the extension. Each object file will then
6# get renamed to start with the archive name and a '-' character (for archive.a(object.o)
7# the object file would becomde archive-object.o. Then all object files are re-made into
8# a single static library. This can help avoid name collisions when different archive
9# files might contain object files with the same name.
10
11use strict;
12use File::Basename;
13use File::Glob ':glob';
14use List::Util qw[min max];
15
Greg Claytonf15996e2011-04-07 22:46:35 +000016our $llvm_srcroot = $ENV{SCRIPT_INPUT_FILE_0};
17our $llvm_dstroot = $ENV{SCRIPT_INPUT_FILE_1};
Chris Lattner24943d22010-06-08 16:52:24 +000018
Sean Callanan6c98ba72011-08-11 20:11:18 +000019our $llvm_clang_outfile = $ENV{SCRIPT_OUTPUT_FILE_0};
Chris Lattner24943d22010-06-08 16:52:24 +000020our ($llvm_clang_basename, $llvm_clang_dirname) = fileparse ($llvm_clang_outfile);
Chris Lattner24943d22010-06-08 16:52:24 +000021
22our $llvm_configuration = $ENV{LLVM_CONFIGURATION};
23
Sean Callanan06dc17f2012-09-24 22:25:51 +000024our $llvm_revision = "HEAD";
25our $clang_revision = "HEAD";
Sean Callanan047eea62011-08-18 18:18:33 +000026
Greg Clayton3e4238d2011-11-04 03:34:56 +000027our $SRCROOT = "$ENV{SRCROOT}";
Chris Lattner24943d22010-06-08 16:52:24 +000028our @archs = split (/\s+/, $ENV{ARCHS});
Greg Clayton3e4238d2011-11-04 03:34:56 +000029my $os_release = 11;
30
Jason Molendadaaa9d12012-04-02 08:56:42 +000031my $original_env_path = $ENV{PATH};
32
Greg Clayton3e4238d2011-11-04 03:34:56 +000033our %llvm_config_info = (
Bob Wilsonbec2ac82013-01-11 19:24:51 +000034 'Debug' => { configure_options => '--disable-optimized --disable-assertions --enable-libcpp', make_options => 'DEBUG_SYMBOLS=1'},
35 'Debug+Asserts' => { configure_options => '--disable-optimized --enable-assertions --enable-libcpp' , make_options => 'DEBUG_SYMBOLS=1'},
36 'Release' => { configure_options => '--enable-optimized --disable-assertions --enable-libcpp' , make_options => ''},
37 'Release+Debug' => { configure_options => '--enable-optimized --disable-assertions --enable-libcpp' , make_options => 'DEBUG_SYMBOLS=1'},
38 'Release+Asserts' => { configure_options => '--enable-optimized --enable-assertions --enable-libcpp' , make_options => ''},
Greg Clayton3e4238d2011-11-04 03:34:56 +000039);
40
41our $llvm_config_href = undef;
42if (exists $llvm_config_info{"$llvm_configuration"})
43{
Bob Wilsona53ac6d2013-01-11 19:00:56 +000044 $llvm_config_href = $llvm_config_info{$llvm_configuration};
Greg Clayton3e4238d2011-11-04 03:34:56 +000045}
46else
47{
Bob Wilsona53ac6d2013-01-11 19:00:56 +000048 die "Unsupported LLVM configuration: '$llvm_configuration'\n";
Greg Clayton3e4238d2011-11-04 03:34:56 +000049}
Chris Lattner24943d22010-06-08 16:52:24 +000050
Bob Wilsona53ac6d2013-01-11 19:00:56 +000051our @archive_files = (
Sean Callanan47a5c4c2010-09-23 03:01:22 +000052 "$llvm_configuration/lib/libclang.a",
Bob Wilsona53ac6d2013-01-11 19:00:56 +000053 "$llvm_configuration/lib/libclangAnalysis.a",
54 "$llvm_configuration/lib/libclangAST.a",
55 "$llvm_configuration/lib/libclangBasic.a",
56 "$llvm_configuration/lib/libclangCodeGen.a",
Sean Callanan6e12c7a2012-03-08 02:39:03 +000057 "$llvm_configuration/lib/libclangEdit.a",
Bob Wilsona53ac6d2013-01-11 19:00:56 +000058 "$llvm_configuration/lib/libclangFrontend.a",
59 "$llvm_configuration/lib/libclangDriver.a",
60 "$llvm_configuration/lib/libclangLex.a",
61 "$llvm_configuration/lib/libclangParse.a",
62 "$llvm_configuration/lib/libclangSema.a",
Sean Callanan47a5c4c2010-09-23 03:01:22 +000063 "$llvm_configuration/lib/libclangSerialization.a",
Bob Wilsona53ac6d2013-01-11 19:00:56 +000064 "$llvm_configuration/lib/libLLVMAnalysis.a",
65 "$llvm_configuration/lib/libLLVMArchive.a",
66 "$llvm_configuration/lib/libLLVMARMAsmParser.a",
67 "$llvm_configuration/lib/libLLVMARMAsmPrinter.a",
68 "$llvm_configuration/lib/libLLVMARMCodeGen.a",
Sean Callanan9b6898f2011-07-30 02:42:06 +000069 "$llvm_configuration/lib/libLLVMARMDesc.a",
Bob Wilsona53ac6d2013-01-11 19:00:56 +000070 "$llvm_configuration/lib/libLLVMARMDisassembler.a",
71 "$llvm_configuration/lib/libLLVMARMInfo.a",
72 "$llvm_configuration/lib/libLLVMAsmParser.a",
73 "$llvm_configuration/lib/libLLVMAsmPrinter.a",
74 "$llvm_configuration/lib/libLLVMBitReader.a",
75 "$llvm_configuration/lib/libLLVMBitWriter.a",
76 "$llvm_configuration/lib/libLLVMCodeGen.a",
77 "$llvm_configuration/lib/libLLVMCore.a",
78 "$llvm_configuration/lib/libLLVMExecutionEngine.a",
79 "$llvm_configuration/lib/libLLVMInstCombine.a",
80 "$llvm_configuration/lib/libLLVMInstrumentation.a",
81 "$llvm_configuration/lib/libLLVMipa.a",
82 "$llvm_configuration/lib/libLLVMInterpreter.a",
83 "$llvm_configuration/lib/libLLVMipo.a",
84 "$llvm_configuration/lib/libLLVMJIT.a",
85 "$llvm_configuration/lib/libLLVMLinker.a",
86 "$llvm_configuration/lib/libLLVMMC.a",
87 "$llvm_configuration/lib/libLLVMMCParser.a",
88 "$llvm_configuration/lib/libLLVMMCDisassembler.a",
Sean Callananc0492742011-05-23 21:40:23 +000089 "$llvm_configuration/lib/libLLVMMCJIT.a",
90 "$llvm_configuration/lib/libLLVMObject.a",
Enrico Granata9ba27722013-06-17 21:42:39 +000091 "$llvm_configuration/lib/libLLVMOption.a",
Sean Callananc0492742011-05-23 21:40:23 +000092 "$llvm_configuration/lib/libLLVMRuntimeDyld.a",
Bob Wilsona53ac6d2013-01-11 19:00:56 +000093 "$llvm_configuration/lib/libLLVMScalarOpts.a",
94 "$llvm_configuration/lib/libLLVMSelectionDAG.a",
95 "$llvm_configuration/lib/libLLVMSupport.a",
96 "$llvm_configuration/lib/libLLVMTarget.a",
97 "$llvm_configuration/lib/libLLVMTransformUtils.a",
98 "$llvm_configuration/lib/libLLVMX86AsmParser.a",
99 "$llvm_configuration/lib/libLLVMX86AsmPrinter.a",
100 "$llvm_configuration/lib/libLLVMX86CodeGen.a",
Sean Callanan9b6898f2011-07-30 02:42:06 +0000101 "$llvm_configuration/lib/libLLVMX86Desc.a",
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000102 "$llvm_configuration/lib/libLLVMX86Disassembler.a",
103 "$llvm_configuration/lib/libLLVMX86Info.a",
Sean Callanan279584c2011-03-15 00:17:19 +0000104 "$llvm_configuration/lib/libLLVMX86Utils.a",
Chris Lattner24943d22010-06-08 16:52:24 +0000105);
106
Greg Clayton3e4238d2011-11-04 03:34:56 +0000107if (-e "$llvm_srcroot/lib")
Chris Lattner24943d22010-06-08 16:52:24 +0000108{
Greg Clayton3e4238d2011-11-04 03:34:56 +0000109 print "Using existing llvm sources in: '$llvm_srcroot'\n";
110 print "Using standard LLVM build directory:\n SRC = '$llvm_srcroot'\n DST = '$llvm_dstroot'\n";
Chris Lattner24943d22010-06-08 16:52:24 +0000111}
Greg Clayton3e4238d2011-11-04 03:34:56 +0000112else
113{
114 print "Checking out llvm sources from revision $llvm_revision...\n";
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000115 do_command ("cd '$SRCROOT' && svn co --quiet --revision $llvm_revision http://llvm.org/svn/llvm-project/llvm/trunk llvm", "checking out llvm from repository", 1);
Greg Clayton3e4238d2011-11-04 03:34:56 +0000116 print "Checking out clang sources from revision $clang_revision...\n";
117 do_command ("cd '$llvm_srcroot/tools' && svn co --quiet --revision $clang_revision http://llvm.org/svn/llvm-project/cfe/trunk clang", "checking out clang from repository", 1);
Sean Callanan5a55c7a2011-11-18 03:28:09 +0000118 print "Applying any local patches to LLVM/Clang...";
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000119
Greg Clayton3e4238d2011-11-04 03:34:56 +0000120 my @llvm_patches = bsd_glob("$ENV{SRCROOT}/scripts/llvm.*.diff");
Greg Clayton3e4238d2011-11-04 03:34:56 +0000121 foreach my $patch (@llvm_patches)
122 {
123 do_command ("cd '$llvm_srcroot' && patch -p0 < $patch");
124 }
Sean Callanan5a55c7a2011-11-18 03:28:09 +0000125
126 my @clang_patches = bsd_glob("$ENV{SRCROOT}/scripts/clang.*.diff");
Sean Callanan5a55c7a2011-11-18 03:28:09 +0000127 foreach my $patch (@clang_patches)
128 {
129 do_command ("cd '$llvm_srcroot/tools/clang' && patch -p0 < $patch");
130 }
Greg Clayton3e4238d2011-11-04 03:34:56 +0000131}
Chris Lattner24943d22010-06-08 16:52:24 +0000132
133# If our output file already exists then we need not generate it again.
Greg Clayton64875582011-08-02 19:00:17 +0000134if (-e $llvm_clang_outfile)
Chris Lattner24943d22010-06-08 16:52:24 +0000135{
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000136 exit 0;
Chris Lattner24943d22010-06-08 16:52:24 +0000137}
138
139
140# Get our options
141
142our $debug = 1;
143
144sub parallel_guess
145{
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000146 my $cpus = `sysctl -n hw.availcpu`;
147 chomp ($cpus);
148 my $memsize = `sysctl -n hw.memsize`;
149 chomp ($memsize);
150 my $max_cpus_by_memory = int($memsize / (750 * 1024 * 1024));
151 return min($max_cpus_by_memory, $cpus);
Chris Lattner24943d22010-06-08 16:52:24 +0000152}
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000153
Chris Lattner24943d22010-06-08 16:52:24 +0000154sub build_llvm
155{
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000156 #my $extra_svn_options = $debug ? "" : "--quiet";
157 # Make the llvm build directory
Chris Lattner24943d22010-06-08 16:52:24 +0000158 my $arch_idx = 0;
159 foreach my $arch (@archs)
160 {
161 my $llvm_dstroot_arch = "${llvm_dstroot}/${arch}";
162
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000163 # if the arch destination root exists we have already built it
164 my $do_configure = 0;
165 my $do_make = 0;
166 my $is_arm = $arch =~ /^arm/;
Greg Clayton3e4238d2011-11-04 03:34:56 +0000167
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000168 my $llvm_dstroot_arch_archive = "$llvm_dstroot_arch/$llvm_clang_basename";
169 print "LLVM architecture root for ${arch} exists at '$llvm_dstroot_arch'...";
170 if (-e $llvm_dstroot_arch)
171 {
172 print "YES\n";
173 $do_configure = !-e "$llvm_dstroot_arch/config.log";
Greg Clayton3e4238d2011-11-04 03:34:56 +0000174
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000175 # dstroot for llvm build exists, make sure all .a files are built
176 for my $llvm_lib (@archive_files)
177 {
178 if (!-e "$llvm_dstroot_arch/$llvm_lib")
179 {
180 print "missing archive: '$llvm_dstroot_arch/$llvm_lib'\n";
181 $do_make = 1;
182 }
183 }
184 if (!-e $llvm_dstroot_arch_archive)
185 {
186 $do_make = 1;
187 }
188 else
189 {
190 print "LLVM architecture archive for ${arch} is '$llvm_dstroot_arch_archive'\n";
191 }
192 }
193 else
194 {
195 print "NO\n";
196 do_command ("mkdir -p '$llvm_dstroot_arch'", "making llvm build directory '$llvm_dstroot_arch'", 1);
197 $do_configure = 1;
198 $do_make = 1;
199
200 if ($is_arm)
201 {
202 my $llvm_dstroot_arch_bin = "${llvm_dstroot_arch}/bin";
203 if (!-d $llvm_dstroot_arch_bin)
204 {
205 do_command ("mkdir -p '$llvm_dstroot_arch_bin'", "making llvm build arch bin directory '$llvm_dstroot_arch_bin'", 1);
206 my @tools = ("ar", "nm", "ranlib", "strip", "lipo", "ld", "as");
207 my $script_mode = 0755;
208 my $prog;
209 for $prog (@tools)
210 {
211 chomp(my $actual_prog_path = `xcrun -sdk '$ENV{SDKROOT}' -find ${prog}`);
Bob Wilson9b21d732013-01-12 19:33:08 +0000212 symlink($actual_prog_path, "$llvm_dstroot_arch_bin/${prog}");
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000213 my $script_prog_path = "$llvm_dstroot_arch_bin/arm-apple-darwin${os_release}-${prog}";
214 open (SCRIPT, ">$script_prog_path") or die "Can't open $! for writing...\n";
215 print SCRIPT "#!/bin/sh\nexec '$actual_prog_path' \"\$\@\"\n";
216 close (SCRIPT);
217 chmod($script_mode, $script_prog_path);
218 }
219 # Tools that must have the "-arch" and "-sysroot" specified
220 my @arch_sysroot_tools = ("clang", "clang++", "gcc", "g++");
221 for $prog (@arch_sysroot_tools)
222 {
223 chomp(my $actual_prog_path = `xcrun -sdk '$ENV{SDKROOT}' -find ${prog}`);
Bob Wilson9b21d732013-01-12 19:33:08 +0000224 symlink($actual_prog_path, "$llvm_dstroot_arch_bin/${prog}");
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000225 my $script_prog_path = "$llvm_dstroot_arch_bin/arm-apple-darwin${os_release}-${prog}";
226 open (SCRIPT, ">$script_prog_path") or die "Can't open $! for writing...\n";
227 print SCRIPT "#!/bin/sh\nexec '$actual_prog_path' -arch ${arch} -isysroot '$ENV{SDKROOT}' \"\$\@\"\n";
228 close (SCRIPT);
229 chmod($script_mode, $script_prog_path);
230 }
231 my $new_path = "$original_env_path:$llvm_dstroot_arch_bin";
232 print "Setting new environment PATH = '$new_path'\n";
233 $ENV{PATH} = $new_path;
234 }
235 }
236 }
237
238 if ($do_configure)
239 {
240 # Build llvm and clang
241 print "Configuring clang ($arch) in '$llvm_dstroot_arch'...\n";
242 my $lldb_configuration_options = "--enable-targets=x86_64,arm $llvm_config_href->{configure_options}";
Greg Clayton3e4238d2011-11-04 03:34:56 +0000243
244 if ($is_arm)
245 {
Bob Wilson9b21d732013-01-12 19:33:08 +0000246 $lldb_configuration_options .= " --host=arm-apple-darwin${os_release} --target=arm-apple-darwin${os_release} --build=i686-apple-darwin${os_release} --program-prefix=\"\"";
Greg Clayton3e4238d2011-11-04 03:34:56 +0000247 }
248 else
249 {
250 $lldb_configuration_options .= " --build=$arch-apple-darwin${os_release}";
251 }
Greg Claytonee33e962013-01-16 01:27:32 +0000252 if ($is_arm)
253 {
254 # Unset "SDKROOT" for ARM builds
255 do_command ("cd '$llvm_dstroot_arch' && unset SDKROOT && '$llvm_srcroot/configure' $lldb_configuration_options",
256 "configuring llvm build", 1);
257 }
258 else
259 {
260 do_command ("cd '$llvm_dstroot_arch' && '$llvm_srcroot/configure' $lldb_configuration_options",
261 "configuring llvm build", 1);
262 }
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000263 }
Chris Lattner24943d22010-06-08 16:52:24 +0000264
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000265 if ($do_make)
266 {
267 # Build llvm and clang
268 my $num_cpus = parallel_guess();
269 print "Building clang using $num_cpus cpus ($arch)...\n";
Greg Clayton3e4238d2011-11-04 03:34:56 +0000270 my $extra_make_flags = '';
271 if ($is_arm)
272 {
Greg Claytonee33e962013-01-16 01:27:32 +0000273 $extra_make_flags = "UNIVERSAL=1 UNIVERSAL_ARCH=${arch} UNIVERSAL_SDK_PATH='$ENV{SDKROOT}' SDKROOT=";
Greg Clayton3e4238d2011-11-04 03:34:56 +0000274 }
Greg Claytonee33e962013-01-16 01:27:32 +0000275 do_command ("cd '$llvm_dstroot_arch' && make -j$num_cpus clang-only VERBOSE=1 $llvm_config_href->{make_options} NO_RUNTIME_LIBS=1 PROJECT_NAME='llvm' $extra_make_flags", "making llvm and clang", 1);
276 do_command ("cd '$llvm_dstroot_arch' && make -j$num_cpus tools-only VERBOSE=1 $llvm_config_href->{make_options} NO_RUNTIME_LIBS=1 PROJECT_NAME='llvm' $extra_make_flags EDIS_VERSION=1", "making libedis", 1);
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000277 # Combine all .o files from a bunch of static libraries from llvm
278 # and clang into a single .a file.
Bob Wilsonbec2ac82013-01-11 19:24:51 +0000279 create_single_llvm_archive_for_arch ($llvm_dstroot_arch, 1);
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000280 }
Chris Lattner24943d22010-06-08 16:52:24 +0000281
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000282 ++$arch_idx;
283 }
Chris Lattner24943d22010-06-08 16:52:24 +0000284}
285
Chris Lattner24943d22010-06-08 16:52:24 +0000286#----------------------------------------------------------------------
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000287# quote the path if needed and realpath it if the -r option was
Chris Lattner24943d22010-06-08 16:52:24 +0000288# specified
289#----------------------------------------------------------------------
290sub finalize_path
291{
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000292 my $path = shift;
293 # Realpath all paths that don't start with "/"
294 $path =~ /^[^\/]/ and $path = abs_path($path);
Chris Lattner24943d22010-06-08 16:52:24 +0000295
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000296 # Quote the path if asked to, or if there are special shell characters
297 # in the path name
298 my $has_double_quotes = $path =~ /["]/;
299 my $has_single_quotes = $path =~ /[']/;
300 my $needs_quotes = $path =~ /[ \$\&\*'"]/;
301 if ($needs_quotes)
302 {
303 # escape and double quotes in the path
304 $has_double_quotes and $path =~ s/"/\\"/g;
305 $path = "\"$path\"";
306 }
307 return $path;
Chris Lattner24943d22010-06-08 16:52:24 +0000308}
309
310sub do_command
311{
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000312 my $cmd = shift;
313 my $description = @_ ? shift : "command";
314 my $die_on_fail = @_ ? shift : undef;
315 $debug and print "% $cmd\n";
316 system ($cmd);
317 if ($? == -1)
318 {
Chris Lattner24943d22010-06-08 16:52:24 +0000319 $debug and printf ("error: %s failed to execute: $!\n", $description);
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000320 $die_on_fail and $? and exit(1);
321 return $?;
Chris Lattner24943d22010-06-08 16:52:24 +0000322 }
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000323 elsif ($? & 127)
324 {
325 $debug and printf("error: %s child died with signal %d, %s coredump\n",
326 $description,
327 ($? & 127),
328 ($? & 128) ? 'with' : 'without');
329 $die_on_fail and $? and exit(1);
330 return $?;
Chris Lattner24943d22010-06-08 16:52:24 +0000331 }
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000332 else
333 {
334 my $exit = $? >> 8;
335 if ($exit)
336 {
337 $debug and printf("error: %s child exited with value %d\n", $description, $exit);
338 $die_on_fail and exit(1);
339 }
340 return $exit;
Chris Lattner24943d22010-06-08 16:52:24 +0000341 }
342}
343
Bob Wilsonbec2ac82013-01-11 19:24:51 +0000344sub create_single_llvm_archive_for_arch
Chris Lattner24943d22010-06-08 16:52:24 +0000345{
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000346 my $arch_dstroot = shift;
Chris Lattner24943d22010-06-08 16:52:24 +0000347 my $split_into_objects = shift;
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000348 my @object_dirs;
349 my $object_dir;
350 my $tmp_dir = $arch_dstroot;
351 my $arch_output_file = "$arch_dstroot/$llvm_clang_basename";
Chris Lattner24943d22010-06-08 16:52:24 +0000352 -e $arch_output_file and return;
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000353 my $files = "$arch_dstroot/files.txt";
354 open (FILES, ">$files") or die "Can't open $! for writing...\n";
Chris Lattner24943d22010-06-08 16:52:24 +0000355
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000356 for my $path (@archive_files)
357 {
358 my $archive_fullpath = finalize_path ("$arch_dstroot/$path");
359 if (-e $archive_fullpath)
360 {
Chris Lattner24943d22010-06-08 16:52:24 +0000361 if ($split_into_objects)
362 {
363 my ($archive_file, $archive_dir, $archive_ext) = fileparse($archive_fullpath, ('.a'));
Chris Lattner24943d22010-06-08 16:52:24 +0000364 $object_dir = "$tmp_dir/$archive_file";
365 push @object_dirs, $object_dir;
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000366
Chris Lattner24943d22010-06-08 16:52:24 +0000367 do_command ("cd '$tmp_dir'; mkdir '$archive_file'; cd '$archive_file'; ar -x $archive_fullpath");
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000368
Chris Lattner24943d22010-06-08 16:52:24 +0000369 my @objects = bsd_glob("$object_dir/*.o");
Chris Lattner24943d22010-06-08 16:52:24 +0000370 foreach my $object (@objects)
371 {
372 my ($o_file, $o_dir) = fileparse($object);
373 my $new_object = "$object_dir/${archive_file}-$o_file";
374 print FILES "$new_object\n";
375 do_command ("mv '$object' '$new_object'");
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000376 }
Chris Lattner24943d22010-06-08 16:52:24 +0000377 }
378 else
379 {
380 # just add the .a files into the file list
381 print FILES "$archive_fullpath\n";
382 }
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000383 }
Greg Clayton193e6d52010-07-13 22:26:45 +0000384 else
385 {
386 print "warning: archive doesn't exist: '$archive_fullpath'\n";
387 }
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000388 }
389 close (FILES);
Chris Lattner24943d22010-06-08 16:52:24 +0000390 do_command ("libtool -static -o '$arch_output_file' -filelist '$files'");
Sean Callanan47a5c4c2010-09-23 03:01:22 +0000391 do_command ("ranlib '$arch_output_file'");
Chris Lattner24943d22010-06-08 16:52:24 +0000392
Bob Wilsona53ac6d2013-01-11 19:00:56 +0000393 foreach $object_dir (@object_dirs)
394 {
395 do_command ("rm -rf '$object_dir'");
396 }
397 do_command ("rm -rf '$files'");
Chris Lattner24943d22010-06-08 16:52:24 +0000398}
399
400build_llvm();