mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
Revert "gnu: ccls: Configure using -isystem for header files."
This reverts commit 2c82d4ad10
.
This commit is contained in:
parent
792c3db553
commit
1171c4b3c0
1 changed files with 5 additions and 13 deletions
|
@ -6,7 +6,6 @@
|
|||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2019 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
|
||||
;;; Copyright © 2019 Brett Gilio <brettg@posteo.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -36,9 +35,7 @@ (define-module (gnu packages cpp)
|
|||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages code)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages llvm)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages tls)
|
||||
|
@ -308,17 +305,12 @@ (define-public ccls
|
|||
(file-name (git-file-name name version))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target.
|
||||
#:configure-flags
|
||||
(list (string-append "-DCMAKE_CXX_FLAGS='-isystem "
|
||||
(assoc-ref %build-inputs "gcc")
|
||||
"/include/c++'"))))
|
||||
(inputs
|
||||
`(("clang" ,clang)
|
||||
("ncurses" ,ncurses)))
|
||||
'(#:tests? #f)) ; no check target.
|
||||
(inputs
|
||||
`(("rapidjson" ,rapidjson)))
|
||||
(native-inputs
|
||||
`(("rapidjson" ,rapidjson)
|
||||
("gcc" ,gcc)))
|
||||
`(("clang" ,clang)
|
||||
("llvm" ,llvm)))
|
||||
(home-page "https://github.com/MaskRay/ccls")
|
||||
(synopsis "C/C++/Objective-C language server")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue