diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-10 12:39:24 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-10 12:39:24 -0800 |
commit | 63a265fa45837b16b4bbf9785b178449caf71417 (patch) | |
tree | ceef7bc8f3e362c764d0211f4e55a6f2a04c95d3 /tools/shared.py | |
parent | 27f6a1cfa33c59c059d450ef39a986538ca24426 (diff) |
remove unneeded debug stuff
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 43f72735..1dec21cd 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -758,7 +758,7 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)''' % { 'winfix': '' if not WINDOWS e new_symbols = Building.llvm_nm(content) # Link in the .o if it provides symbols, *or* this is a singleton archive (which is apparently an exception in gcc ld) #print >> sys.stderr, 'need', content, '?', unresolved_symbols, 'and we can supply', new_symbols.defs - print >> sys.stderr, content, 'DEF', new_symbols.defs, '\n' + #print >> sys.stderr, content, 'DEF', new_symbols.defs, '\n' if new_symbols.defs.intersection(unresolved_symbols) or len(files) == 1: if Building.is_bitcode(content): #print >> sys.stderr, ' adding object', content, '\n' |