|
|
|
@ -546,9 +546,13 @@ class BuildTarget(Target): |
|
|
|
|
d = [d] |
|
|
|
|
newd = [] |
|
|
|
|
for i in d: |
|
|
|
|
if hasattr(i, 'held_object'): |
|
|
|
|
newd.append(i.held_object) |
|
|
|
|
else: |
|
|
|
|
if isinstance(i, list): |
|
|
|
|
i = self.unpack_holder(i) |
|
|
|
|
elif hasattr(i, 'held_object'): |
|
|
|
|
i = i.held_object |
|
|
|
|
for t in ['dependencies', 'link_with', 'include_directories', 'sources']: |
|
|
|
|
if hasattr(i, t): |
|
|
|
|
setattr(i, t, self.unpack_holder(getattr(i, t))) |
|
|
|
|
newd.append(i) |
|
|
|
|
return newd |
|
|
|
|
|
|
|
|
@ -557,10 +561,14 @@ class BuildTarget(Target): |
|
|
|
|
# This sucks quite badly. Arguments |
|
|
|
|
# are holders but they can't be pickled |
|
|
|
|
# so unpack those known. |
|
|
|
|
if 'dependencies' in self.kwargs: |
|
|
|
|
self.kwargs['dependencies'] = self.unpack_holder(self.kwargs['dependencies']) |
|
|
|
|
if 'link_with' in self.kwargs: |
|
|
|
|
self.kwargs['link_with'] = self.unpack_holder(self.kwargs['link_with']) |
|
|
|
|
for k, v in self.kwargs.items(): |
|
|
|
|
if isinstance(v, list): |
|
|
|
|
self.kwargs[k] = self.unpack_holder(v) |
|
|
|
|
if hasattr(v, 'held_object'): |
|
|
|
|
self.kwargs[k] = v.held_object |
|
|
|
|
for t in ['dependencies', 'link_with', 'include_directories', 'sources']: |
|
|
|
|
if t in self.kwargs: |
|
|
|
|
self.kwargs[t] = self.unpack_holder(self.kwargs[t]) |
|
|
|
|
|
|
|
|
|
def extract_objects(self, srclist): |
|
|
|
|
obj_src = [] |
|
|
|
@ -1490,8 +1498,12 @@ class CustomTarget(Target): |
|
|
|
|
|
|
|
|
|
def process_kwargs(self, kwargs): |
|
|
|
|
super().process_kwargs(kwargs) |
|
|
|
|
self.sources = kwargs.get('input', []) |
|
|
|
|
self.sources = flatten(self.sources) |
|
|
|
|
sources = flatten(kwargs.get('input', [])) |
|
|
|
|
self.sources = [] |
|
|
|
|
for s in sources: |
|
|
|
|
if hasattr(s, 'held_object'): |
|
|
|
|
s = s.held_object |
|
|
|
|
self.sources.append(s) |
|
|
|
|
if 'output' not in kwargs: |
|
|
|
|
raise InvalidArguments('Missing keyword argument "output".') |
|
|
|
|
self.outputs = kwargs['output'] |
|
|
|
|