-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix flycheck clang args loading (zhengyangfeng00)
- Loading branch information
Showing
3 changed files
with
54 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
;;; funcs.el --- C/C++ Layer functions File for Spacemacs | ||
;; | ||
;; Copyright (c) 2012-2014 Sylvain Benner | ||
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors | ||
;; | ||
;; Author: Sylvain Benner <sylvain.benner@gmail.com> | ||
;; URL: https://github.com/syl20bnr/spacemacs | ||
;; | ||
;; This file is not part of GNU Emacs. | ||
;; | ||
;;; License: GPLv3 | ||
|
||
;; Based on the Sarcasm/irony-mode compilation database code. | ||
(defun company-mode/find-clang-complete-file () | ||
(when buffer-file-name | ||
(let ((dir (locate-dominating-file buffer-file-name ".clang_complete"))) | ||
(when dir | ||
(concat (file-name-as-directory dir) ".clang_complete"))))) | ||
|
||
;; Based on the Sarcasm/irony-mode compilation database code. | ||
(defun company-mode/load-clang-complete-file (cc-file) | ||
"Load the flags from CC-FILE, one flag per line." | ||
(let ((invocation-dir (expand-file-name (file-name-directory cc-file))) | ||
(case-fold-search nil) | ||
compile-flags) | ||
(with-temp-buffer | ||
(insert-file-contents cc-file) | ||
;; Replace relative paths with absolute paths (by @trishume) | ||
;; (goto-char (point-min)) | ||
(while (re-search-forward "\\(-I\\|-isystem\n\\)\\(\\S-\\)" nil t) | ||
(replace-match (format "%s%s" (match-string 1) | ||
(expand-file-name (match-string 2) invocation-dir)))) | ||
;; Turn lines into a list | ||
(setq compile-flags | ||
;; remove whitespaces at the end of each line, if any | ||
(mapcar #'(lambda (line) | ||
(if (string-match "[ \t]+$" line) | ||
(replace-match "" t t line) | ||
line)) | ||
(split-string (buffer-string) "\n" t)))) | ||
compile-flags)) | ||
|
||
(defun c-c++/load-clang-args () | ||
"Sets the arguments for company-clang based on a project-specific text file." | ||
(unless company-clang-arguments | ||
(let* ((cc-file (company-mode/find-clang-complete-file)) | ||
(flags (if cc-file (company-mode/load-clang-complete-file cc-file) '()))) | ||
(setq-local company-clang-arguments flags) | ||
(setq flycheck-clang-args flags)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters