Skip to content

Commit 18a7b71

Browse files
committed
external_deps: improve build and install logging
1 parent 609c14c commit 18a7b71

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

external_deps/build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ build_depcheck() {
11101110
for dll in $(find "${PREFIX}/bin" -type f -name '*.dll'); do
11111111
# https://wiki.unvanquished.net/wiki/MinGW#Built-in_DLL_dependencies
11121112
if objdump -p "${dll}" | grep -oP '(?<=DLL Name: )(libgcc_s|libstdc|libssp|libwinpthread).*'; then
1113-
echo "${dll} depends on above DLLs"
1113+
log WARNING "${dll} depends on above DLLs"
11141114
good=false
11151115
fi
11161116
done
@@ -1169,6 +1169,7 @@ list_build() {
11691169
eval "package_list=(\${${list_name}_${PLATFORM//-/_}_packages})"
11701170
for pkg in "${package_list[@]}"; do
11711171
cd "${WORK_DIR}"
1172+
log STATUS "Processing target '${pkg}' for ${PLATFORM}"
11721173
"build_${pkg}"
11731174
done
11741175
}
@@ -1602,6 +1603,7 @@ do (
16021603
# Build packages
16031604
for pkg in "${@}"; do
16041605
cd "${WORK_DIR}"
1606+
log STATUS "Processing target '${pkg}' for ${PLATFORM}"
16051607
"build_${pkg}"
16061608
done
16071609
) done

0 commit comments

Comments
 (0)