- M-x makelc --- compilerパッケージとlispパッケージの関数をコンパイル後、~/lispフォルダ以下の*.lを再コンパイル
- (makelc:compile-files dirname) --- 指定ディレクトリ以下の*.lを再コンパイル
- (makelc:compile-package :packagename) --- 指定パッケージ内で定義されている未コンパイルの関数をコンパイル
Created
February 29, 2012 08:45
-
-
Save youz/1939234 to your computer and use it in GitHub Desktop.
makelc
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
;;; -*- mode:lisp; package:makelc -*- | |
(eval-when (:compile-toplevel :load-toplevel :execute) | |
(require "compile")) | |
(defpackage :makelc | |
(:use :lisp :ed)) | |
(in-package :makelc) | |
(export '(compile-package | |
compile-files)) | |
(defmacro time (form) | |
`(let ((start (get-internal-real-time)) | |
(result (multiple-value-list ,form))) | |
(format t "~&~V@{-~}~%~D msec~%~%" 30 (- (get-internal-real-time) start)) | |
(values-list result))) | |
(defun not-compiled-functions (pkg) | |
(let ((fns nil) | |
(p (find-package pkg))) | |
(do-symbols (s p) | |
(when (and (fboundp s) | |
(not (macro-function s)) | |
(eq p (symbol-package s))) | |
(let ((f (symbol-function s))) | |
(when (not (or (si:*builtin-function-p f) | |
(compiled-function-p f) | |
(not (functionp f)) | |
(and (si:*closurep f) | |
(si:closure-variable f)))) | |
(push s fns))))) | |
(nreverse fns))) | |
(defun compile-package (pkg) | |
(format t "compiling <~A> ...~%" pkg) | |
(time | |
(dolist (f (not-compiled-functions pkg)) | |
(format t "~A ..." f) | |
(goto-char (point-max)) | |
(refresh-screen) | |
(handler-case | |
(progn | |
(compile f) | |
(princ "ok")) | |
(error (c) | |
(format t "error~%*****~%~A~%*****" | |
(si:*condition-string c)))) | |
(terpri)))) | |
(defun compile-files (&optional (dir "~/lisp")) | |
(let ((files (directory dir :absolute t :wild "*.l" :recursive t))) | |
(time | |
(dolist (f files) | |
(compile-file f) | |
(goto-char (point-max)) | |
(refresh-screen))))) | |
(defun user::makelc () | |
(interactive) | |
(let ((buf (create-new-buffer "*compile log*"))) | |
(set-buffer buf) | |
(setup-temp-buffer buf) | |
(with-output-to-buffer (buf) | |
(compile-package :compiler) | |
(compile-package :lisp) | |
(compile-files "~/lisp") | |
(when (file-exist-p #0="~/xyzzy.wxp") | |
(delete-file #0#))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment