Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5562)

Unified Diff: chrome/tools/build/mac/verify_order

Issue 2314753002: mac: remove libc++-static 10.6 compatibility hack (Closed)
Patch Set: remove libc++ check in verify_order Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | third_party/libc++-static/LICENSE.TXT » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/mac/verify_order
diff --git a/chrome/tools/build/mac/verify_order b/chrome/tools/build/mac/verify_order
index d10ca9d4b33802a65244b12cebd12fd0047c173f..add97eb88b805884c97aede60e3bfab10069ea95 100755
--- a/chrome/tools/build/mac/verify_order
+++ b/chrome/tools/build/mac/verify_order
@@ -12,8 +12,6 @@
#
# This script can be used to verify that all of the global text symbols in
# a Mach-O file are accounted for in an order file.
-#
-# Also check that the file does not depend on either of libstdc++ or libc++.
if [ ${#} -ne 2 ] ; then
echo "usage: ${0} LAST_SYMBOL MACH_O_FILE" >& 2
@@ -47,13 +45,5 @@ if [ ${?} -ne 0 ] ; then
echo "${0}: failed to get libraries in ${MACH_O_FILE}" >& 2
exit 1
fi
-if grep -Fq libstdc++ <<< ${LIBS} ; then
- echo "${0}: ${MACH_O_FILE} depends on libstdc++" >& 2
- exit 1
-fi
-if grep -Fq libc++ <<< ${LIBS} ; then
- echo "${0}: ${MACH_O_FILE} depends on libc++" >& 2
- exit 1
-fi
exit 0
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | third_party/libc++-static/LICENSE.TXT » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698