Skip to content

Commit

Permalink
[Build System] Move host lipo step after install step
Browse files Browse the repository at this point in the history
(cherry picked from commit c123f42)
  • Loading branch information
shahmishal committed Sep 3, 2020
1 parent 07c379c commit 4000085
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/build-script
Original file line number Diff line number Diff line change
Expand Up @@ -918,6 +918,9 @@ class BuildScriptInvocation(object):
for host_target in all_hosts:
for product_class in impl_product_classes:
self._execute_install_action(host_target, product_class)

# Lipo...
self._execute_merged_host_lipo_action()

# Non-build-script-impl products...
# Note: currently only supports building for the host.
Expand Down Expand Up @@ -957,9 +960,6 @@ class BuildScriptInvocation(object):
for host_target in all_hosts:
self._execute_package_action(host_target)

# Lipo...
self._execute_merged_host_lipo_action()

def _execute_build_action(self, host_target, product_class):
action_name = "{}-{}-build".format(host_target.name,
product_class.product_name())
Expand Down

0 comments on commit 4000085

Please sign in to comment.