unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Emacs Flycheck erlang include path
@ 2014-12-17 14:42 yikang zhuo
  0 siblings, 0 replies; only message in thread
From: yikang zhuo @ 2014-12-17 14:42 UTC (permalink / raw)
  To: help-gnu-emacs

hello, flycheck is very good ,but it can't find my include path

i try to change

(flycheck-define-checker erlang "An Erlang syntax checker using the Erlang
interpreter.See URL `http://www.erlang.org/'." :command ("erlc" "-o"
temporary-directory "-Wall" source) :error-patterns ((warning line-start
(file-name) ":" line ": Warning:" (message) line-end) (error line-start
(file-name) ":" line ": " (message) line-end)) :modes erlang-mode)

to =>>>>

(flycheck-define-checker erlang
  "An Erlang syntax checker using the Erlang interpreter.
See URL `http://www.erlang.org/'."
  :command ("erlc" "-I ../include/ -I ../../include/ -I ../../../include/"
"-o" temporary-directory  "-Wall" source)
  :error-patterns
  ((warning line-start (file-name) ":" line ": Warning:" (message) line-end)
   (error line-start (file-name) ":" line ": " (message) line-end))
  :modes erlang-mode)


but i won't work and very angly.

anybody have any good ideal ? thanks for share.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-12-17 14:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-17 14:42 Emacs Flycheck erlang include path yikang zhuo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).