-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple tools for version and flags management #36
Conversation
Composite module names qhould be separated by underscore. |
@@ -371,7 +372,7 @@ def ALEASolution(options, tools=[], dir=[]): | |||
if isinstance(platform, Win32): | |||
# Checking for compiler info first | |||
compileroptions = deepcopy(options) | |||
compilerconf = Config(default_tools,dir) | |||
compilerconf = Config([],dir) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may have a huge effect, isn't it?
How users that depend on compiler will add the compiler? Explicitly?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just explain a bit. Thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default_tools is already included by default in Config construction.
No description provided.