Commit db386544 authored by Thomas Heller's avatar Thomas Heller

Print the results of ctypes.util.find_library("c") and

ctypes.util.find_library("m") so that we can see if it works on the
buildbots.
parent 775ebe29
......@@ -14,8 +14,9 @@ elif sys.platform == "cygwin":
else:
libc_name = find_library("c")
if is_resource_enabled("printing"):
print "libc_name is", libc_name
if True or is_resource_enabled("printing"):
print >> sys.stderr, "\tfind_library('c') -> ", find_library('c')
print >> sys.stderr, "\tfind_library('m') -> ", find_library('m')
class LoaderTest(unittest.TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment