Link libstdc++ statically in Updater.

This will allow running it on Ubuntu 12.04 when it was built on 14.04.
This commit is contained in:
John Preston 2017-11-23 09:29:56 +04:00
parent 2850d456d0
commit da71938d18
2 changed files with 24 additions and 0 deletions

View File

@ -155,6 +155,26 @@ if [ "$BuildTarget" == "linux" ] || [ "$BuildTarget" == "linux32" ]; then
Error "Updater not found!"
fi
BadCount=`objdump -T $ReleasePath/Updater | grep GLIBC_2\.1[6-9] | wc -l`
if [ "$BadCount" != "0" ]; then
Error "Bad GLIBC usages found: $BadCount"
fi
BadCount=`objdump -T $ReleasePath/Updater | grep GLIBC_2\.2[0-9] | wc -l`
if [ "$BadCount" != "0" ]; then
Error "Bad GLIBC usages found: $BadCount"
fi
BadCount=`objdump -T $ReleasePath/Updater | grep GCC_4\.[3-9] | wc -l`
if [ "$BadCount" != "0" ]; then
Error "Bad GCC usages found: $BadCount"
fi
BadCount=`objdump -T $ReleasePath/Updater | grep GCC_[5-9]\. | wc -l`
if [ "$BadCount" != "0" ]; then
Error "Bad GCC usages found: $BadCount"
fi
echo "Dumping debug symbols.."
"$HomePath/../../Libraries/breakpad/out/Default/dump_syms" "$ReleasePath/$BinaryName" > "$ReleasePath/$BinaryName.sym"
echo "Done!"

View File

@ -51,6 +51,10 @@
'sources!': [
'<(src_loc)/_other/updater_linux.cpp',
],
}, {
'ldflags': [
'-static-libstdc++',
],
}],
[ '"<(build_mac)" != "1"', {
'sources!': [