From 410680bafec9643358dfb81c30e9e87f545b21db Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 2 Mar 2008 20:48:35 -0500 Subject: Apply workaround to allow compiling under Ubuntu. Add make option "AVOIDCOMBINE" that prevent -combine from being used. Ubuntu makes symbols non-global -- have defsyms.py pick them up anyway. --- tools/defsyms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/defsyms.py b/tools/defsyms.py index 54d18b8b..e4b3215f 100755 --- a/tools/defsyms.py +++ b/tools/defsyms.py @@ -21,7 +21,7 @@ def main(): lines = sys.stdin.readlines() for line in lines: addr, type, sym = line.split() - if type not in 'TA': + if type not in 'Tt': # Only interested in global symbols in text segment continue for c in sym: -- cgit