Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. (flycheck-define-checker vhdl-ghdl
  2. "A VHDL syntax checker using ghdl."
  3. :command ("ghdl" "-s" "--std=93" "--ieee=synopsys" "-fexplicit" source)
  4. :error-patterns
  5. ((error line-start (file-name) ":" line ":" column
  6. ": " (message) line-end))
  7. :modes vhdl-mode)
  8. (flycheck-set-checker-executable 'vhdl-ghdl)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement