Skip to content

[Linux] Build and install Foundation static libraries. #28293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions utils/build-script-impl
Original file line number Diff line number Diff line change
Expand Up @@ -1847,6 +1847,9 @@ for host in "${ALL_HOSTS[@]}"; do
tmp_product=libdispatch
LIBDISPATCH_STATIC_CMAKE_OPTIONS=${LIBDISPATCH_CMAKE_OPTIONS[@]}
fi
if [[ ${tmp_product} == "foundation_static" ]]; then
tmp_product=foundation
fi
if ! [[ $(should_execute_action "${host}-${tmp_product}-build") ]]; then
continue
fi
Expand Down Expand Up @@ -3093,6 +3096,9 @@ for host in "${ALL_HOSTS[@]}"; do
if [[ ${tmp_product} == "libdispatch_static" ]]; then
tmp_product=libdispatch
fi
if [[ ${tmp_product} == "foundation_static" ]]; then
tmp_product=foundation
fi
if ! [[ $(should_execute_action "${host}-${tmp_product}-install") ]]; then
continue
fi
Expand Down