Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SyntaxCheckPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def _target_to_args(self, target):
# For now, just grab the first kind since it will always result in the
# same arguments.
kind = target['kind'][0]
if kind in ('lib', 'rlib', 'dylib', 'staticlib', 'proc-macro'):
if kind in ('lib', 'rlib', 'dylib', 'cdylib', 'staticlib', 'proc-macro'):
return (target['src_path'], '--lib')
elif kind in ('bin', 'test', 'example', 'bench'):
return (target['src_path'], '--'+kind+' '+target['name'])
Expand Down