Skip to content

Commit c123f42

Browse files
authored
[Build System] Move host lipo step after install step
1 parent bfef9d4 commit c123f42

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/build-script

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,9 @@ class BuildScriptInvocation(object):
996996
for host_target in all_hosts:
997997
for product_class in impl_product_classes:
998998
self._execute_install_action(host_target, product_class)
999+
1000+
# Lipo...
1001+
self._execute_merged_host_lipo_action()
9991002

10001003
# Non-build-script-impl products...
10011004
# Note: currently only supports building for the host.
@@ -1036,9 +1039,6 @@ class BuildScriptInvocation(object):
10361039
for host_target in all_hosts:
10371040
self._execute_package_action(host_target)
10381041

1039-
# Lipo...
1040-
self._execute_merged_host_lipo_action()
1041-
10421042
def _execute_build_action(self, host_target, product_class):
10431043
action_name = "{}-{}-build".format(host_target.name,
10441044
product_class.product_name())

0 commit comments

Comments
 (0)