Flymake

From WikEmacs
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Overview

Flymake is a on-the-fly syntax checker for Emacs. It works by running a preconfigured syntax check tool in the background, processing the tool's output and highlighting errors in the current Buffer. The most common use is to check computer programs for errors, although flymake can be configured to use any program for checking the contents of a buffer.

Flycheck provides a similar functionality and aims at replacing Flymake. For a detailed comparison to Flycheck see Flycheck versus Flymake.

Configuration

This section details how to make flymake work with different programming languages.

C

Using flymake with the C programming language requires some setup. Flymake expects a Makefile in the current directory. The Makefile is required to have a target named "check-syntax". Thus a minimal Makefile for getting flymake to work could look like this:

.PHONY: check-syntax

# depending on the compiler, -fsyntax-only has to be
# replaced by another option

check-syntax:
        $(CC) -fsyntax-only  $(CHK_SOURCES)