You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "D:\VCS\cake\src\cake\library\compilers\gcc.py", line 506, in _getCommonLinkArgs
if dll and self.importLibrary is not None:
AttributeError: 'WindowsMinGWCompiler' object has no attribute 'importLibrary'
Based on MacGccCompiler, the WindowsMinGWCompiler should be extending _getLinkCommands() such that the importLibrary parameter is available rather than trying to access it from self.
If it was self.importLibrary , it seems kind of strange as that would seemily imply the Compiler only has one such import library path.
The text was updated successfully, but these errors were encountered:
The resulting error message is:
Based on MacGccCompiler, the WindowsMinGWCompiler should be extending _getLinkCommands() such that the importLibrary parameter is available rather than trying to access it from self.
If it was
self.importLibrary
, it seems kind of strange as that would seemily imply the Compiler only has one such import library path.The text was updated successfully, but these errors were encountered: