-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
On OSX, I see that -I arguments aren't being passed to Verilator when search_project_path and use_multiple_sources are True since the appending to cmd only occurs if the platform is windows.
Had to do some hacking to get multi-file linting to work for OSX (Manually add -I args in sublime-settings)
"use_multiple_source": true,
"search_project_path": true,
`for path in prjsrc:
if sublime.platform() == 'windows':
if wslopt:
path = '/mnt/' + re.sub(':', '', path)
path = '-I' + re.sub(re.compile(r'\\'), '/', path)
cmd.append(path)`
Metadata
Metadata
Assignees
Labels
No labels