Skip to content

Commit

Permalink
Show ACLiC's debug information if DEBUG is set, re-enable ACLiC
Browse files Browse the repository at this point in the history
  • Loading branch information
pwaller committed Dec 10, 2012
1 parent 69331af commit 7b981f5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rootpy/stl.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def shell(cmd):

NEW_DICTS = False
LOOKUP_TABLE_NAME = 'lookup'
USE_ACLIC = False #True
USE_ACLIC = True

# Initialized in initialize()
LOADED_DICTS = {}
Expand All @@ -145,6 +145,9 @@ def initialize():

ROOT.gSystem.AddLinkedLibs("-Wl,-rpath,{0}".format(DICTS_PATH))

if "DEBUG" in os.environ:
ROOT.gDebug = 7

class CPPType(CPPGrammar):
"""
Grammar and representation of a C++ template type. Can handle arbitrary
Expand Down

0 comments on commit 7b981f5

Please sign in to comment.