mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-06-14 12:21:20 +00:00
73 lines
3 KiB
EmacsLisp
73 lines
3 KiB
EmacsLisp
;;; c-compiler-option-sets.el --- -*- lexical-binding: t -*-
|
|
|
|
;; Copyright (C) 2024 Benson Chu
|
|
|
|
;; Author: Benson Chu <bensonchu457@gmail.com>
|
|
;; Created: [2024-05-05 15:13]
|
|
|
|
;; This file is not part of GNU Emacs
|
|
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(defclass compiler-option-config ()
|
|
((target-str :initarg :target-str :type string :initform "")
|
|
(binary-path :initarg :binary :type string :initform "")
|
|
(target-options :initarg :target :type string :initform "")
|
|
(lang-options :initarg :lang :type string :initform "")
|
|
(other-options :initarg :other :type string :initform "")
|
|
(optimization-level :initarg :optimization :type string :initform "")
|
|
(include-dirs :initarg :include-dirs :type list :initform nil)
|
|
(system-include-dirs :initarg :isystem :type list :initform nil)))
|
|
|
|
(defmacro register-prebaked-optionset (hashmap type target-str key &rest options)
|
|
(declare (indent 3))
|
|
`(puthash ',key
|
|
(make-instance ,type
|
|
:target-str ,target-str
|
|
,@options)
|
|
,hashmap))
|
|
|
|
(cl-defgeneric cos/to-string (config))
|
|
|
|
(defun cos/edit-compiler-options (prefix optionset current-name)
|
|
(dolist (slot (cddr (eieio-class-slots 'compiler-option-config)))
|
|
(let* ((slot-sym (eieio-slot-descriptor-name slot))
|
|
(slot-val (and (slot-boundp optionset slot-sym)
|
|
(slot-value optionset slot-sym))))
|
|
(when slot-val
|
|
(pcase (cl--slot-descriptor-type slot)
|
|
('list
|
|
(when (or prefix
|
|
(not (zerop (length slot-val))))
|
|
(setf (slot-value optionset slot-sym)
|
|
(read
|
|
(read-string (format "Edit '%s' for optionset '%s': "
|
|
(symbol-name slot-sym)
|
|
current-name)
|
|
(prin1-to-string slot-val))))))
|
|
('string
|
|
(when (or prefix
|
|
(not (string= slot-val "")))
|
|
(setf (slot-value optionset slot-sym)
|
|
(read-string (format "Edit '%s' for optionset '%s': "
|
|
(symbol-name slot-sym)
|
|
current-name)
|
|
slot-val)))))))))
|
|
|
|
(provide 'c-compiler-option-sets)
|
|
;;; c-compiler-option-sets.el ends here
|