Skip to content

search_project_path is Window's Specific #8

@ILDUOMO

Description

@ILDUOMO

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions