aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-06-22 09:42:37 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-06-22 09:42:37 -0700
commit8f1a7e5546f5b10263c176e507dba8d548161c86 (patch)
treee2c56d688d547af6041c196eb64ab2a66d52150e
parentb5fbaa0114212a9f9837958d6b9e62468b38b54f (diff)
show auto-linking decision process only in VERBOSE
-rwxr-xr-xemcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc b/emcc
index e76c9870..6c5b1f51 100755
--- a/emcc
+++ b/emcc
@@ -1354,7 +1354,7 @@ try:
for haz in has: # remove symbols that are supplied by another of the inputs
if haz in need:
need.remove(haz)
- logging.debug('considering %s: we need %s and have %s' % (name, str(need), str(has)))
+ if shared.Settings.VERBOSE: logging.debug('considering %s: we need %s and have %s' % (name, str(need), str(has)))
if (force or len(need) > 0) and apply_(need):
# We need to build and link the library in
logging.debug('including %s' % name)