build:ignore solaris _GLOBAL_OFFSET_TABLE_ in duplicate symbol checker
authorAndrew Bartlett <abartlet@samba.org>
Mon, 23 Apr 2012 01:37:39 +0000 (11:37 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 10 May 2012 04:57:13 +0000 (14:57 +1000)
buildtools/wafsamba/symbols.py

index 87757357afce6811cd358e0005c5e5fc34f5afbd..c4b5599988c5da5b92d6c1a22e828134e4164c7e 100644 (file)
@@ -592,6 +592,8 @@ def symbols_dupcheck_binary(bld, binname, fail_on_error):
     symmap = {}
     for libpath in symlist:
         for sym in symlist[libpath]['PUBLIC']:
+            if sym == '_GLOBAL_OFFSET_TABLE_':
+                continue
             if not sym in symmap:
                 symmap[sym] = set()
             symmap[sym].add(libpath)