Skip to content

Commit 7481687

Browse files
authored
Fix shared library dependencies verification on some platforms (dotnet#8349)
The existing way of verifying shared library dependencies, used for System.Globalization.Native.so, doesn't work on platforms that don't have ldd or where ldd doesn't support the `-r` option. This change makes the check happen on non-Alpine Linux only for now. It also refactors the way the check is performed. Instead of doing it post build in the build.sh, it is now performed as a postbuild phase of the System.Globalization.Native target and it is also generalized so that we can easily add such verification to other build targets. The new verify-so.sh script is also used in corefx.
1 parent e678512 commit 7481687

File tree

4 files changed

+42
-8
lines changed

4 files changed

+42
-8
lines changed

build.sh

-8
Original file line numberDiff line numberDiff line change
@@ -218,14 +218,6 @@ build_coreclr()
218218
exit 1
219219
fi
220220

221-
echo "Verifying System.Globalization.Native.so dependencies"
222-
223-
ldd -r $__BinDir/System.Globalization.Native.so | awk 'BEGIN {count=0} /undefined symbol:/ { if (count==0) {print "Undefined symbol(s) found:"} print " " $3; count++ } END {if (count>0) exit(1)}'
224-
if [ $? != 0 ]; then
225-
echo "Failed. System.Globalization.Native.so has undefined dependencies. These are likely ICU APIs that need to be added to icushim.h"
226-
exit 1
227-
fi
228-
229221
popd
230222
}
231223

functions.cmake

+16
Original file line numberDiff line numberDiff line change
@@ -216,3 +216,19 @@ function(_install)
216216
install(${ARGV})
217217
endif()
218218
endfunction()
219+
220+
function(verify_dependencies targetName errorMessage)
221+
# We don't need to verify dependencies on OSX, since missing dependencies
222+
# result in link error over there.
223+
if (NOT CLR_CMAKE_PLATFORM_DARWIN)
224+
add_custom_command(
225+
TARGET ${targetName}
226+
POST_BUILD
227+
VERBATIM
228+
COMMAND ${CMAKE_SOURCE_DIR}/verify-so.sh
229+
$<TARGET_FILE:${targetName}>
230+
${errorMessage}
231+
COMMENT "Verifying ${targetName} dependencies"
232+
)
233+
endif()
234+
endfunction()

src/corefx/System.Globalization.Native/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,11 @@ else()
9393
add_definitions(-DU_DISABLE_RENAMING=1)
9494
endif()
9595

96+
verify_dependencies(
97+
System.Globalization.Native
98+
"Verification failed. System.Globalization.Native.so has undefined dependencies. These are likely ICU APIs that need to be added to icushim.h."
99+
)
100+
96101
# add the install targets
97102
install_clr(System.Globalization.Native)
103+

verify-so.sh

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
# $1 contains full path to the .so to verify
3+
# $2 contains message to print when the verification fails
4+
5+
OSName=$(uname -s)
6+
case $OSName in
7+
Linux)
8+
source /etc/os-release
9+
# TODO: add support for verification on Alpine Linux
10+
if [ "$ID" != "alpine" ]; then
11+
ldd -r $1 | awk 'BEGIN {count=0} /undefined symbol:/ { if (count==0) {print "Undefined symbol(s) found:"} print " " $3; count++ } END {if (count>0) exit(1)}'
12+
if [ $? != 0 ]; then
13+
echo "$2"
14+
exit 1
15+
fi
16+
fi
17+
;;
18+
esac
19+
20+
# TODO: add support for verification on non-Linux Unixes (except of OSX)

0 commit comments

Comments
 (0)