From 9a445319538d8a54532d6cc1949035b17402eacd Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 5 Nov 2019 14:51:03 +0300 Subject: [PATCH] Return GCC feature checks on Linux. --- Telegram/build/build.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Telegram/build/build.sh b/Telegram/build/build.sh index 91d3a6d69..a51d2b698 100755 --- a/Telegram/build/build.sh +++ b/Telegram/build/build.sh @@ -145,15 +145,15 @@ if [ "$BuildTarget" == "linux" ] || [ "$BuildTarget" == "linux32" ]; then # Error "Bad GLIBC usages found: $BadCount" # fi - # BadCount=`objdump -T $ReleasePath/$BinaryName | grep GCC_4\.[3-9] | wc -l` - # if [ "$BadCount" != "0" ]; then - # Error "Bad GCC usages found: $BadCount" - # fi + BadCount=`objdump -T $ReleasePath/$BinaryName | grep GCC_4\.[3-9] | wc -l` + if [ "$BadCount" != "0" ]; then + Error "Bad GCC usages found: $BadCount" + fi - # BadCount=`objdump -T $ReleasePath/$BinaryName | grep GCC_[5-9]\. | wc -l` - # if [ "$BadCount" != "0" ]; then - # Error "Bad GCC usages found: $BadCount" - # fi + BadCount=`objdump -T $ReleasePath/$BinaryName | grep GCC_[5-9]\. | wc -l` + if [ "$BadCount" != "0" ]; then + Error "Bad GCC usages found: $BadCount" + fi if [ ! -f "$ReleasePath/Updater" ]; then Error "Updater not found!"