[Bug 731036] Plenty of temporary files/directories are not removed

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Fri Jun 6 03:01:11 PDT 2014


https://bugzilla.gnome.org/show_bug.cgi?id=731036
  GStreamer | packages | git

--- Comment #9 from Andoni Morales <ylatuya at gmail.com> 2014-06-06 10:01:07 UTC ---
This directory is created and used here:

181                 if len(archs) > 1: #should be a fat file, split only to the
arch we want
182                     libprefix += '_%s_' % thin_arch
183                     lib_tmpdir = self._split_static_lib(lib, thin_arch)
184                 else:
185                     lib_tmpdir = self._split_static_lib(lib)
186 
187                 obj_files = shell.ls_files(['*.o'], lib_tmpdir)
188                 for obj_f in obj_files:

It's taking a static library, and extracting the object files for the given
architecture and adding it to the archive if they were not added previously
(based on the md5)

This step is done for each architecture, storing the results in tmpdir_thinarch

After having created the archives for all the architecture, a fat library is
created with lipo and tmpdir can be deleted afterwards

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list